@start-base/start-ui
Version:
<p align="center"> <a href="https://startbase.dev" target="_blank"> <img src="https://startbase.dev/apple-touch-icon.png" width="60px" style="padding-top: 60px" /> </a> </p>
11 lines (7 loc) • 358 B
text/typescript
import React$1 from 'react';
interface ChipProps extends React.AllHTMLAttributes<HTMLSpanElement> {
children: string;
color?: 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'error';
}
declare const Chip: React$1.ForwardRefExoticComponent<ChipProps & React$1.RefAttributes<HTMLSpanElement>>;
export { type ChipProps, Chip as default };