interface Props { label: string; } export const ConditionSegment = ({ label }: Props) => { return (
{label}
); };