-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
5647a54
commit fe12080
Showing
7 changed files
with
96 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
interface IconProps { | ||
size?: number | ||
color?: string | ||
} | ||
export default function CardView({ size = 32, color = "white" }: IconProps) { | ||
return ( | ||
<svg width={size} height={size} viewBox="0 0 64 64" fill="none"> | ||
<g stroke={color}> | ||
<rect x="7" y="7" width="50" height="12" rx="3" stroke="black" strokeWidth="4" /> | ||
<rect x="7" y="26" width="50" height="12" rx="3" stroke="black" strokeWidth="4" /> | ||
<rect x="7" y="45" width="50" height="12" rx="3" stroke="black" strokeWidth="4" /> | ||
</g> | ||
</svg> | ||
) | ||
} |
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,20 @@ | ||
interface IconProps { | ||
size?: number | ||
color?: string | ||
} | ||
export default function ListView({ size = 32, color = "white" }: IconProps) { | ||
return ( | ||
<svg width={size} height={size} viewBox="0 0 64 64" fill="none"> | ||
<g fill={color}> | ||
<rect x="17" y="10" width="39" height="5" /> | ||
<rect x="17" y="23" width="39" height="5" /> | ||
<rect x="17" y="36" width="39" height="5" /> | ||
<rect x="17" y="49" width="39" height="5" /> | ||
<circle cx="10.5" cy="12.5" r="3.5" /> | ||
<circle cx="10.5" cy="25.5" r="3.5" /> | ||
<circle cx="10.5" cy="38.5" r="3.5" /> | ||
<circle cx="10.5" cy="51.5" r="3.5" /> | ||
</g> | ||
</svg> | ||
) | ||
} |
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