variant-color-selector-basic-ex-01
stackzero/variant-color-selector-basic-ex-01FreeExample
stackzero publishes no description for this item.
Install it
npx shadcn@latest add https://ui.stackzero.co/r/variant-color-selector-basic-ex-01.jsonSource
1import * as React from "react";2import VariantColorSelectorBasic, {3 ColorVariantItem,4} from "./variant-color-selector-basic";56const variants: ColorVariantItem[] = [7 { color: "#000000", id: "color-black", label: "Black", value: "black" },8 { color: "#FFFFFF", id: "color-white", label: "White", value: "white" },9 { color: "#FF0000", id: "color-red", label: "Red", value: "red" },10 { color: "#0000FF", id: "color-blue", label: "Blue", value: "blue" },11 { color: "#00FF00", id: "color-green", label: "Green", value: "green" },12 { color: "#FFFF00", id: "color-yellow", label: "Yellow", value: "yellow" },13 { color: "#800080", id: "color-purple", label: "Purple", value: "purple" },14];1516export default function VariantColorSelectorBasicExample() {17 const [selectedColor, setSelectedColor] = React.useState("black");1819 return (20 <div className="space-y-8">21 <fieldset className="space-y-4">22 <legend className="mb-2 text-sm font-medium">Select color:</legend>23 <VariantColorSelectorBasic24 value={selectedColor}25 onValueChange={setSelectedColor}26 variants={variants}27 />28 </fieldset>29 </div>30 );31}
What it pulls in
npm packages
Other registry items
Files it writes
More from stackzero
All 112 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| address-02-block-exaddress-02-block-ex | stackzero | Examples | Free | 2 deps | |
| cart-01-block-excart-01-block-ex | stackzero | Examples | Free | 1 dep | |
| face-rating-basic-ex-01face-rating-basic-ex-01 | stackzero | Examples | Free | 1 dep | |
| face-rating-basic-ex-02face-rating-basic-ex-02 | stackzero | Examples | Free | 1 dep | |
| face-rating-basic-ex-03face-rating-basic-ex-03 | stackzero | Examples | Free | 1 dep | |
| face-rating-gradient-ex-01face-rating-gradient-ex-01 | stackzero | Examples | Free | 1 dep | |
| image-carousel-basic-ex-01image-carousel-basic-ex-01 | stackzero | Examples | Free | 1 dep | |
| image-carousel-basic-ex-02image-carousel-basic-ex-02 | stackzero | Examples | Free | 1 dep |
