project-nomad/admin/inertia/components/AlertWithButton.tsx
2025-11-30 22:29:16 -08:00

16 lines
409 B
TypeScript

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