Components
ReUI Icon Stack with the first 6 official ReUI examples, preserved from the MIT-licensed source registry.
import { LayersIcon } from "lucide-react"
import { IconStack } from "@/components/ui/reui-icon-stack"
export default function Pattern() {
return (
<div className="flex items-center justify-center">
<IconStack aria-hidden="true">
<LayersIcon className="size-4" />
</IconStack>
</div>
)
}