UNPKG

@pagamio/frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

12 lines (11 loc) 290 B
import React from 'react'; interface BaseDrawerProps { title: string; isOpen: boolean; marginTop?: string; onClose: () => void; children: React.ReactNode; } declare const BaseDrawer: React.FC<BaseDrawerProps>; export default BaseDrawer; export type { BaseDrawerProps };