Skip to content
Draft
19 changes: 19 additions & 0 deletions package/src/components/icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -792,6 +792,25 @@ export const IconChevronRight = ({ size = 16 }: { size?: number }) => (
</svg>
);

// Pencil icon for draw mode
export const IconPencil = ({ size = 24 }: { size?: number }) => (
<svg width={size} height={size} viewBox="0 0 24 24" fill="none">
<path
d="M15.8787 4.87868C16.6597 4.09763 17.9261 4.09763 18.7071 4.87868L19.1213 5.29289C19.9024 6.07394 19.9024 7.34027 19.1213 8.12132L9.58579 17.6569C9.21071 18.0319 8.70201 18.2426 8.17157 18.2426H5.75V15.8284C5.75 15.298 5.96071 14.7893 6.33579 14.4142L15.8787 4.87868Z"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M14.5 6.5L17.5 9.5"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
/>
</svg>
);

// Animated Bunny mascot
export const AnimatedBunny = ({
size = 20,
Expand Down
Loading
Loading