UNPKG

@teamsparta/stack-bottom-sheet

Version:
14 lines (11 loc) 437 B
import * as react from 'react'; import { HTMLAttributes } from 'react'; interface BottomSheetBodyProps extends HTMLAttributes<HTMLDivElement> { /** * 바텀시트 컨텐츠 패딩 * @default "0 20px 20px 20px" */ padding?: string; } declare const BottomSheetBody: react.ForwardRefExoticComponent<BottomSheetBodyProps & react.RefAttributes<HTMLDivElement>>; export { BottomSheetBody, type BottomSheetBodyProps };