Skip to content

Commit 950fe92

Browse files
committed
chore: remove icon name labels from overview grid
1 parent 1b9b699 commit 950fe92

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

src/components/icons/IconTile.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ function IconTile({ icon }: { icon: IconBundleObject }) {
77
const [open, setOpen] = useState(false)
88

99
return (
10-
<Box className="flex flex-col items-center gap-y-2">
10+
<Box className="flex flex-col items-center">
1111
<Button
1212
className="relative w-full pt-[100%] hover:bg-gray-100"
1313
onClick={() => setOpen(true)}
@@ -18,9 +18,6 @@ function IconTile({ icon }: { icon: IconBundleObject }) {
1818
{icon.icon(icon.id)}
1919
</Box>
2020
</Button>
21-
<p className="mt-1 text-balance text-center text-sm leading-snug">
22-
{icon.name}
23-
</p>
2421
<IconDialog open={open} onClose={() => setOpen(false)} icon={icon} />
2522
</Box>
2623
)

0 commit comments

Comments
 (0)