A visual preview of a color value with accessibility support.
"use client"; import { ColorSwatch } from "@/components/ui/heroui-color-swatch"; export default function ColorSwatchShapes() { return ( <div className="flex min-h-screen w-full items-center justify-center overflow-hidden bg-background p-8"> <div className="flex items-center gap-3"> <ColorSwatch color="#0485F7" shape="circle" /> <ColorSwatch color="#0485F7" shape="square" /> </div> </div> ); } export { ColorSwatchShapes };