import { FunctionComponent } from 'react'; import { ButtonComponent } from '../../../types'; import { ctw } from '../../../utils/ctw/ctw'; /** * @description A button element styled with re-occurring CSS, including styling for hover, focus, and active pseudo-states. * @param children * @param className * @param props * @constructor */ export const PrimaryButton: FunctionComponent = ({ children, className, ...props }) => { return ( ); };