@cn-ui/core
Version:
The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.
9 lines (8 loc) • 324 B
TypeScript
import "../animation/slideFromLeft.css";
import "../animation/slideFromRight.css";
interface DrawerProps {
title?: string;
placement?: "right" | "left";
}
export declare const Drawer: import("solid-js").Component<import("@cn-ui/reactive").OriginComponentOutputType<DrawerProps, HTMLDivElement, boolean>>;
export {};