import * as RAlertDialog from '@radix-ui/react-alert-dialog'; import { useStyles } from '~/hooks'; import { Components } from '~/utils/components-list'; import { _unstable_createComponent, _unstable_createEl } from '../../utils'; import type * as t from './defs'; import { styles } from './styles'; export type AlertDialogHeadingProps = RAlertDialog.AlertDialogTitleProps; export const AlertDialogHeading = _unstable_createComponent( Components.AlertDialogHeading, (props) => { const classes = useStyles(styles, props, ['heading']); return _unstable_createEl(RAlertDialog.AlertDialogTitle, { ...props, ...classes.heading, }); }, );