({children}: InfoMessageProps)
| 235 | } |
| 236 | |
| 237 | export function InfoMessage({children}: InfoMessageProps) { |
| 238 | return ( |
| 239 | <div className={style({display: 'flex', gap: 4, padding: 8, alignItems: 'center'})}> |
| 240 | <InfoCircle styles={iconStyle({size: 'XS'})} /> |
| 241 | <span className={style({font: 'ui'})}>{children}</span> |
| 242 | </div> |
| 243 | ); |
| 244 | } |
| 245 | |
| 246 | function SkeletonColorItem({item}: {item: {id: string}}) { |
| 247 | const ref = useRef(null); |
nothing calls this directly
no test coverage detected