23 lines
575 B
TypeScript
23 lines
575 B
TypeScript
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>
|
|
)
|