import React from 'react'; import { ChipProps } from './interfaces'; import { StyledChip } from './styles'; const Chip = ({ label, selected, cursor, fullWidth, icon, borderColor, onClick, }: ChipProps) => { return ( onClick?.(label)} cursor={cursor} fullWidth={fullWidth} borderColor={borderColor} > {label} {icon} ); }; export default Chip;