Skip to content

Commit f75c063

Browse files
committed
1 parent 252fda8 commit f75c063

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/components/Drawer/styled/drawer.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"use client";
2-
import type { Assign, PolymorphicProps } from "@ark-ui/react";
2+
import type { Assign } from "@ark-ui/react/";
33
import { Dialog } from "@ark-ui/react/dialog";
44
import { ark } from "@ark-ui/react/factory";
55
import { type DrawerVariantProps, drawer } from "styled-system/recipes";
@@ -55,17 +55,17 @@ export const Trigger = withContext<
5555

5656
export const Header = withContext<
5757
HTMLDivElement,
58-
Assign<HTMLStyledProps<"div">, PolymorphicProps>
58+
Assign<HTMLStyledProps<"div">, object>
5959
>(ark.div, "header");
6060

6161
export const Body = withContext<
6262
HTMLDivElement,
63-
Assign<HTMLStyledProps<"div">, PolymorphicProps>
63+
Assign<HTMLStyledProps<"div">, object>
6464
>(ark.div, "body");
6565

6666
export const Footer = withContext<
6767
HTMLDivElement,
68-
Assign<HTMLStyledProps<"div">, PolymorphicProps>
68+
Assign<HTMLStyledProps<"div">, object>
6969
>(ark.div, "footer");
7070

7171
export {

0 commit comments

Comments
 (0)