import { SpanBox, HStack } from './LayoutPrimitives'
import { Circle, X } from 'phosphor-react'
type LabelChipProps = {
text: string
color: string // expected to be a RGB hex color string
isSelected?: boolean
}
export function LabelChip(props: LabelChipProps): JSX.Element {
return (
{props.text}
)
// }
// return (
//
// )
}