import Alert, { AlertProps } from './Alert' import StyledButton, { StyledButtonProps } from './StyledButton' export type AlertWithButtonProps = { buttonProps: StyledButtonProps } & AlertProps const AlertWithButton = ({ buttonProps, ...alertProps }: AlertWithButtonProps) => { return ( ) } export default AlertWithButton