({name, className})
| 297 | } |
| 298 | |
| 299 | export function Color({name, className}) { |
| 300 | return ( |
| 301 | <div |
| 302 | className={style({ |
| 303 | display: 'flex', |
| 304 | gap: 8, |
| 305 | marginBottom: 4, |
| 306 | font: 'ui', |
| 307 | alignItems: 'center', |
| 308 | breakInside: 'avoid' |
| 309 | })}> |
| 310 | <div className={typeof className === 'function' ? className({}) : className} /> |
| 311 | <div className="sb-unstyled">{name}</div> |
| 312 | </div> |
| 313 | ); |
| 314 | } |
| 315 | |
| 316 | export function IconColors() { |
| 317 | return ( |
nothing calls this directly
no test coverage detected