dappconnect-sdks/packages/icons/16/calendar-icon.tsx

34 lines
1.1 KiB
TypeScript

import { Path, Svg } from 'react-native-svg'
import { useCurrentColor } from 'tamagui'
import type { SvgProps } from 'react-native-svg'
const SvgCalendarIcon = (props: SvgProps) => {
const { color: colorToken = 'currentColor', ...rest } = props
const color = useCurrentColor(colorToken)
return (
<Svg
width={16}
height={16}
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<Path
d="M14 9.2c0 1.68 0 2.52-.327 3.162a3 3 0 0 1-1.311 1.311C11.72 14 10.88 14 9.2 14H6.8c-1.68 0-2.52 0-3.162-.327a3 3 0 0 1-1.311-1.311C2 11.72 2 10.88 2 9.2V7.8c0-1.68 0-2.52.327-3.162a3 3 0 0 1 1.311-1.311C4.28 3 5.12 3 6.8 3h2.4c1.68 0 2.52 0 3.162.327a3 3 0 0 1 1.311 1.311C14 5.28 14 6.12 14 7.8v1.4Z"
stroke={color}
strokeWidth={1.2}
/>
<Path d="M5 2v2" stroke="#000" strokeWidth={1.3} strokeLinecap="round" />
<Path
d="M3 6.5h10"
stroke="#000"
strokeWidth={1.3}
strokeLinecap="square"
/>
<Path d="M11 2v2" stroke="#000" strokeWidth={1.3} strokeLinecap="round" />
</Svg>
)
}
export default SvgCalendarIcon