Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | 5x 47x | import Svg, { Path } from "react-native-svg";
import { IconProps } from "@repo/types/icons";
import { colors } from "../themes";
export const CalendarIcon = ({
width = 32,
height = 32,
color = colors.icon.default,
}: IconProps) => {
return (
<Svg width={width} height={height} viewBox="0 0 24 24" fill="none">
<Path
d="M8 2V5"
stroke={color}
strokeWidth={2}
strokeMiterlimit={10}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M16 2V5"
stroke={color}
strokeWidth={2}
strokeMiterlimit={10}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M3.5 9.08997H20.5"
stroke={color}
strokeWidth={2}
strokeMiterlimit={10}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M21 8.5V17C21 20 19.5 22 16 22H8C4.5 22 3 20 3 17V8.5C3 5.5 4.5 3.5 8 3.5H16C19.5 3.5 21 5.5 21 8.5Z"
stroke={color}
strokeWidth={2}
strokeMiterlimit={10}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M15.6947 13.7001H15.7037"
stroke={color}
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M15.6947 16.7001H15.7037"
stroke={color}
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M11.9955 13.7001H12.0045"
stroke={color}
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M11.9955 16.7001H12.0045"
stroke={color}
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M8.29431 13.7001H8.30329"
stroke={color}
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M8.29431 16.7001H8.30329"
stroke={color}
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
};
export default CalendarIcon;
|