import { IIndicationProps } from './types' import classNames from 'classnames' export const Indication = ({ label, color, borderColor, className, }: IIndicationProps) => { return (
{label}
) }