Skip to content

Commit

Permalink
add strokewidth to svgs
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasGLund99 committed Nov 7, 2024
1 parent 2852d71 commit bfc33d6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/svgs/clearSVG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ export default function ClearSVG({ width, height }: IClearProps) {
fill="currentColor"
className="bi bi-eraser"
viewBox="0 0 16 16"
stroke="currentColor"
strokeWidth="0.3"
>
<path d="M8.086 2.207a2 2 0 0 1 2.828 0l3.879 3.879a2 2 0 0 1 0 2.828l-5.5 5.5A2 2 0 0 1 7.879 15H5.12a2 2 0 0 1-1.414-.586l-2.5-2.5a2 2 0 0 1 0-2.828zm2.121.707a1 1 0 0 0-1.414 0L4.16 7.547l5.293 5.293 4.633-4.633a1 1 0 0 0 0-1.414zM8.746 13.547 3.453 8.254 1.914 9.793a1 1 0 0 0 0 1.414l2.5 2.5a1 1 0 0 0 .707.293H7.88a1 1 0 0 0 .707-.293z" />
</svg>
Expand Down
2 changes: 2 additions & 0 deletions src/svgs/polygonSVG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ export default function PolygonSVG({ width, height }: IPolygonProps) {
fill="currentColor"
className="bi bi-heptagon"
viewBox="0 0 16 16"
stroke="currentColor"
strokeWidth="0.3"
>
<path d="M7.779.052a.5.5 0 0 1 .442 0l6.015 2.97a.5.5 0 0 1 .267.34l1.485 6.676a.5.5 0 0 1-.093.415l-4.162 5.354a.5.5 0 0 1-.395.193H4.662a.5.5 0 0 1-.395-.193L.105 10.453a.5.5 0 0 1-.093-.415l1.485-6.676a.5.5 0 0 1 .267-.34zM2.422 3.813l-1.383 6.212L4.907 15h6.186l3.868-4.975-1.383-6.212L8 1.058z" />
</svg>
Expand Down
2 changes: 2 additions & 0 deletions src/svgs/rectangleSVG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ export default function RectangleSVG({ width, height }: IRectangleProps) {
fill="currentColor"
className="bi bi-square"
viewBox="0 0 16 16"
stroke="currentColor"
strokeWidth="0.3"
>
<path d="M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z" />
</svg>
Expand Down

0 comments on commit bfc33d6

Please sign in to comment.