# Chips Provides a robust set of interactive chip styles. ```html --- ---
``` ## Presets Provides full support of [Presets](/docs/design/presets). ```html
``` ## Disabled When applied to a ` ``` ## Selection ```html const colors = ['red', 'blue', 'green']; const [color, setColor] = useState(colors[0]); return (
{color && colors.map((c) => ( // On selection, set the color state, dynamically update classes ))}
); } ```