Skip to content
Snippets Groups Projects
Chip.tsx 260 B
type ChipOptions = {
  text: string,
  style: string
}

export default ({ text, style }: ChipOptions) => {
  return (
    <div className={`m-px px-3 py-1 text-xs rounded-full text-white ${style} w-auto self-start`}>
      {text}
    </div>
  );
};