IconDocumentation.tsx17 lines · main
1// @ts-ignore
2import IconBase from '../../IconBase'
3
4const src = (
5 <path
6 d="M4.20351 9.85778H11.7038M4.20351 7.35767H11.7038M4.20351 12.3579H9.20372M14.2498 5.00126V13C14.2498 14.3807 13.1305 15.5001 11.7497 15.5001H4.2499C2.86913 15.5001 1.74979 14.3807 1.74979 13V3.00018C1.74979 1.61941 2.86912 0.500076 4.24989 0.500076H9.72709L14.2498 5.00126ZM14.2058 4.98025L9.72549 0.500076L9.72526 3.73011C9.72522 4.42053 10.2849 4.98025 10.9753 4.98025L14.2058 4.98025Z"
7 strokeMiterlimit="10"
8 strokeLinecap="round"
9 strokeLinejoin="round"
10 />
11)
12
13function IconDocumentation(props: any) {
14 return <IconBase src={src} {...props} />
15}
16
17export default IconDocumentation