Components
ReUI Icon Tile with the first 10 official ReUI examples, preserved from the MIT-licensed source registry.
import { PackageIcon } from "lucide-react"
import { IconTile } from "@/components/ui/reui-icon-tile"
const sizes = ["xs", "sm", "default", "lg", "xl"] as const
export default function Pattern() {
return (
<div className="flex items-end justify-center gap-4">
{sizes.map((size) => (
<IconTile key={size} variant="elevated" size={size} aria-hidden="true">
<PackageIcon />
</IconTile>
))}
</div>
)
}