liber-salti
Version:
Saltí - Liber Design System
24 lines (23 loc) • 475 B
TypeScript
/// <reference types="react" />
export interface SwipeableDrawerProps {
/**
* The open function of the component
*/
onOpen?: () => void;
/**
* The close function of the component
*/
onClose?: () => void;
/**
* The open state
*/
open: boolean;
/**
* The top border radius
*/
rounded?: boolean;
/**
* The children of the component
*/
children?: React.ReactNode;
}