import React from 'react'; import { Label as ReactstrapLabel, LabelProps as ReactstrapLabelProps, } from 'reactstrap'; import cn from 'classnames'; import './label.css'; type LabelProps = ReactstrapLabelProps & { children: JSX.Element | JSX.Element[] | string; }; const Label: React.FC = ({ children, className, ...props }) => ( {children} ); export default Label;