import { PrimaryButton } from '../PrimaryButton/PrimaryButton'; import { TSecondaryButtonProps } from './types'; import { FunctionComponentWithChildren } from '../../../types'; import { ctw } from '../../../utils/ctw/ctw'; /** * @description Wraps children with a {@link PrimaryButton} component and applies default styling. * @param props * @constructor */ export const SecondaryButton: FunctionComponentWithChildren = ({ children, className, ...rest }) => { return ( {children} ); };