import classNames from 'classnames'; import React from 'react'; import ProLabel from './buttons/ProLabel'; export type FieldsetProps = { children?: React.ReactNode; id: string; label: string; description: string; isPrimary: boolean; isPro?: boolean; }; export const Fieldset: React.FC = props => { const { children, id, label, description, isPrimary, isPro } = props; return (
{children &&
{children}
}
); };