Move custom icons to a separate folder

This commit is contained in:
1ilit
2024-04-05 04:19:36 +03:00
parent eff3f57071
commit 9036a96a22
6 changed files with 43 additions and 43 deletions

12
src/icons/IconAddArea.jsx Normal file
View File

@@ -0,0 +1,12 @@
export default function IconAddArea() {
return (
<svg height="26" width="26">
<path
fill="none"
stroke="currentColor"
strokeWidth="2"
d="M4 2 L20 2 A4 4 0 0 1 22 4 L22 14 M14 22 L4 22 A4 4 0 0 1 1 18 L1 4 A4 4 0 0 1 5 2 M22 17 L22 25 M18 21 L26 21"
/>
</svg>
);
}

12
src/icons/IconAddNote.jsx Normal file
View File

@@ -0,0 +1,12 @@
export default function IconAddNote() {
return (
<svg height="26" width="26">
<path
fill="none"
stroke="currentColor"
strokeWidth="2"
d="M12 2 L20 2 A4 4 0 0 1 22 4 L22 14 M14 22 L4 22 A4 4 0 0 1 1 18 L1 12 L12 2 M1 12 L9 12 A3 3 0 0 0 12 9 L12 1 M22 17 L22 25 M18 21 L26 21"
/>
</svg>
);
}

View File

@@ -0,0 +1,12 @@
export default function IconAddTable() {
return (
<svg height="26" width="26">
<path
fill="none"
stroke="currentColor"
strokeWidth="2"
d="M4 2 L20 2 A4 4 0 0 1 22 4 L22 14 M14 22 L4 22 A4 4 0 0 1 1 18 L1 4 A4 4 0 0 1 5 2 M22 17 L22 25 M18 21 L26 21 M1 8 L22 8"
/>
</svg>
);
}

3
src/icons/index.js Normal file
View File

@@ -0,0 +1,3 @@
export { default as IconAddTable } from "./IconAddTable";
export { default as IconAddArea } from "./IconAddArea";
export { default as IconAddNote } from "./IconAddNote";