-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
199 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import type { SVGProps } from "react"; | ||
|
||
export function BlurIcon(props: SVGProps<SVGSVGElement>) { | ||
return ( | ||
<svg | ||
height="1em" | ||
viewBox="0 0 24 24" | ||
width="1em" | ||
xmlns="http://www.w3.org/2000/svg" | ||
{...props} | ||
> | ||
<path | ||
d="M3 14.5q-.2 0-.35-.15T2.5 14q0-.2.15-.35T3 13.5q.2 0 .35.15t.15.35q0 .2-.15.35T3 14.5m0-4q-.2 0-.35-.15T2.5 10q0-.2.15-.35T3 9.5q.2 0 .35.15t.15.35q0 .2-.15.35T3 10.5M6 19q-.425 0-.712-.288T5 18q0-.425.288-.712T6 17q.425 0 .713.288T7 18q0 .425-.288.713T6 19m0-4q-.425 0-.712-.288T5 14q0-.425.288-.712T6 13q.425 0 .713.288T7 14q0 .425-.288.713T6 15m0-4q-.425 0-.712-.288T5 10q0-.425.288-.712T6 9q.425 0 .713.288T7 10q0 .425-.288.713T6 11m0-4q-.425 0-.712-.288T5 6q0-.425.288-.712T6 5q.425 0 .713.288T7 6q0 .425-.288.713T6 7m4 8.5q-.625 0-1.062-.437T8.5 14q0-.625.438-1.062T10 12.5q.625 0 1.063.438T11.5 14q0 .625-.437 1.063T10 15.5m0-4q-.625 0-1.062-.437T8.5 10q0-.625.438-1.062T10 8.5q.625 0 1.063.438T11.5 10q0 .625-.437 1.063T10 11.5m0 7.5q-.425 0-.712-.288T9 18q0-.425.288-.712T10 17q.425 0 .713.288T11 18q0 .425-.288.713T10 19m0-12q-.425 0-.712-.288T9 6q0-.425.288-.712T10 5q.425 0 .713.288T11 6q0 .425-.288.713T10 7m0 14.5q-.2 0-.35-.15T9.5 21q0-.2.15-.35t.35-.15q.2 0 .35.15t.15.35q0 .2-.15.35t-.35.15m0-18q-.2 0-.35-.15T9.5 3q0-.2.15-.35T10 2.5q.2 0 .35.15t.15.35q0 .2-.15.35T10 3.5m4 12q-.625 0-1.062-.437T12.5 14q0-.625.438-1.062T14 12.5q.625 0 1.063.438T15.5 14q0 .625-.437 1.063T14 15.5m0-4q-.625 0-1.062-.437T12.5 10q0-.625.438-1.062T14 8.5q.625 0 1.063.438T15.5 10q0 .625-.437 1.063T14 11.5m0 7.5q-.425 0-.712-.288T13 18q0-.425.288-.712T14 17q.425 0 .713.288T15 18q0 .425-.288.713T14 19m0-12q-.425 0-.712-.288T13 6q0-.425.288-.712T14 5q.425 0 .713.288T15 6q0 .425-.288.713T14 7m0 14.5q-.2 0-.35-.15T13.5 21q0-.2.15-.35t.35-.15q.2 0 .35.15t.15.35q0 .2-.15.35t-.35.15m0-18q-.2 0-.35-.15T13.5 3q0-.2.15-.35T14 2.5q.2 0 .35.15t.15.35q0 .2-.15.35T14 3.5M18 19q-.425 0-.712-.288T17 18q0-.425.288-.712T18 17q.425 0 .713.288T19 18q0 .425-.288.713T18 19m0-4q-.425 0-.712-.288T17 14q0-.425.288-.712T18 13q.425 0 .713.288T19 14q0 .425-.288.713T18 15m0-4q-.425 0-.712-.288T17 10q0-.425.288-.712T18 9q.425 0 .713.288T19 10q0 .425-.288.713T18 11m0-4q-.425 0-.712-.288T17 6q0-.425.288-.712T18 5q.425 0 .713.288T19 6q0 .425-.288.713T18 7m3 7.5q-.2 0-.35-.15T20.5 14q0-.2.15-.35t.35-.15q.2 0 .35.15t.15.35q0 .2-.15.35t-.35.15m0-4q-.2 0-.35-.15T20.5 10q0-.2.15-.35T21 9.5q.2 0 .35.15t.15.35q0 .2-.15.35t-.35.15" | ||
fill="currentColor" | ||
/> | ||
</svg> | ||
); | ||
} |
Oops, something went wrong.