We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b9b699 commit 950fe92Copy full SHA for 950fe92
1 file changed
src/components/icons/IconTile.tsx
@@ -7,7 +7,7 @@ function IconTile({ icon }: { icon: IconBundleObject }) {
7
const [open, setOpen] = useState(false)
8
9
return (
10
- <Box className="flex flex-col items-center gap-y-2">
+ <Box className="flex flex-col items-center">
11
<Button
12
className="relative w-full pt-[100%] hover:bg-gray-100"
13
onClick={() => setOpen(true)}
@@ -18,9 +18,6 @@ function IconTile({ icon }: { icon: IconBundleObject }) {
18
{icon.icon(icon.id)}
19
</Box>
20
</Button>
21
- <p className="mt-1 text-balance text-center text-sm leading-snug">
22
- {icon.name}
23
- </p>
24
<IconDialog open={open} onClose={() => setOpen(false)} icon={icon} />
25
26
)
0 commit comments