@saleor/macaw-ui
Version:
Saleor's UI component library
11 lines (9 loc) • 305 B
TypeScript
import { DataAttributes } from '../types';
import { PropsWithBox } from '../Box';
export type DrawerContentProps = PropsWithBox<DataAttributes & {
children: React.ReactNode;
}>;
export declare const Content: {
({ children, ...rest }: DrawerContentProps): JSX.Element;
displayName: string;
};