import React, { FC } from 'react'; interface Props { label: string; } export const ConditionSegment: FC = ({ label }) => { return (
{label}
); };