14 lines
426 B
TypeScript
14 lines
426 B
TypeScript
import { FunctionComponent, ReactNode } from 'react'
|
|
import { AlertDialogDescription } from '@reach/alert-dialog'
|
|
|
|
type Props = {
|
|
className?: string
|
|
children?: ReactNode
|
|
}
|
|
|
|
const ModalDialogDescription: FunctionComponent<Props> = ({ children, className = '' }) => (
|
|
<AlertDialogDescription className={`overflow-y-auto px-4 py-4 ${className}`}>{children}</AlertDialogDescription>
|
|
)
|
|
|
|
export default ModalDialogDescription
|