2
0

📄 Add Commercial License for ee folder (#1532)

This commit is contained in:
Baptiste Arnaud
2024-05-23 10:42:23 +02:00
committed by GitHub
parent 5680829906
commit 0eacbebbbe
246 changed files with 1472 additions and 1588 deletions

View File

@ -0,0 +1,22 @@
import { Icon, IconProps } from '@chakra-ui/react'
import React from 'react'
export const HandDrawnArrow = (props: IconProps) => (
<Icon
viewBox="0 0 120 124"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
d="M53.5 106.5C79.3333 81 78.8935 57.3316 77 49.0001C74.5 38.0001 71 22.5001 42.5 17.5001"
stroke="white"
strokeWidth="2"
/>
<path
d="M55.5 87.5C56.5 91 52 108.5 52 108.5C52 108.5 61.7329 102.589 66.5 101C68 100.5 72 100 74.5 101"
stroke="white"
strokeWidth="2"
/>
</Icon>
)