fix: rename DialogContent interface to DialogContentProps
This commit is contained in:
parent
5debb80330
commit
d9d6d033f9
@ -170,11 +170,11 @@ const [dialogContentVariant, resolveDialogContentVariant] = vcn({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
interface DialogContent
|
interface DialogContentProps
|
||||||
extends React.ComponentPropsWithoutRef<"div">,
|
extends React.ComponentPropsWithoutRef<"div">,
|
||||||
Omit<VariantProps<typeof dialogContentVariant>, "opened"> {}
|
Omit<VariantProps<typeof dialogContentVariant>, "opened"> {}
|
||||||
|
|
||||||
const DialogContent = React.forwardRef<HTMLDivElement, DialogContent>(
|
const DialogContent = React.forwardRef<HTMLDivElement, DialogContentProps>(
|
||||||
(props, ref) => {
|
(props, ref) => {
|
||||||
const [{ opened }] = useDialogContext();
|
const [{ opened }] = useDialogContext();
|
||||||
const [variantProps, otherPropsCompressed] = resolveDialogContentVariant({
|
const [variantProps, otherPropsCompressed] = resolveDialogContentVariant({
|
||||||
|
Loading…
x
Reference in New Issue
Block a user