UNPKG

skyroc-ui

Version:

A modern React UI component library built on Radix UI and Tailwind CSS

15 lines (14 loc) 702 B
import { ThemeSize } from "../../types/other.js"; import { DrawerClassNames } from "./types.js"; import * as react178 from "react"; import * as clsx179 from "clsx"; import * as _radix_ui_react_dialog177 from "@radix-ui/react-dialog"; //#region src/components/drawer/DrawerContent.d.ts declare const DrawerContent: react178.ForwardRefExoticComponent<Omit<Omit<_radix_ui_react_dialog177.DialogContentProps & react178.RefAttributes<HTMLDivElement>, "ref">, "className"> & { className?: clsx179.ClassValue; size?: ThemeSize; } & { classNames?: Pick<DrawerClassNames, "content" | "contentBody" | "knob" | "overlay">; } & react178.RefAttributes<HTMLDivElement>>; //#endregion export { DrawerContent };