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 | 3x 3x | import Svg, { Path } from "react-native-svg";
import { IconProps } from "@repo/types/icons";
export const NoteIcon = ({
width = 24,
height = 24,
color = "#A1A1A1",
}: IconProps) => (
<Svg width={width} height={height} viewBox="0 0 24 24" fill="none">
<Path
d="M20.7617 7V17C20.7617 20 19.2617 22 15.7617 22H7.76172C4.26172 22 2.76172 20 2.76172 17V7C2.76172 4 4.26172 2 7.76172 2H15.7617C19.2617 2 20.7617 4 20.7617 7Z"
stroke={color}
strokeWidth="2"
strokeMiterlimit="10"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M14.2617 4.5V6.5C14.2617 7.6 15.1617 8.5 16.2617 8.5H18.2617"
stroke={color}
strokeWidth="2"
strokeMiterlimit="10"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M7.76172 13H11.7617"
stroke={color}
strokeWidth="2"
strokeMiterlimit="10"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M7.76172 17H15.7617"
stroke={color}
strokeWidth="2"
strokeMiterlimit="10"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
|