import React, { useState } from 'react'; import { PixelColorInput } from './PixelColorInput'; export function Default() { const [value, setValue] = useState('#06b6d4'); return ( ); } export function RgbFormat() { const [value, setValue] = useState('rgb(34, 197, 94)'); return ( ); } export function CustomPresets() { const [value, setValue] = useState('#ef4444'); return ( ); } export function WithError() { return ( ); }