UNPKG

design-system-simplefi

Version:

Design System for SimpleFi Applications

17 lines (16 loc) 704 B
import { SpaceSize } from '../../../theme/space/space.types'; import { PaddingType } from '../../../utils/space'; export interface PadboxProps { /** * One of padding types. * For more information see [Inseting section](/design-system/alpha/?path=/docs/theme-space--page#inseting) */ paddingType?: PaddingType; /** * One of available space sizes. * For more information see [Inseting section](/design-system/alpha/?path=/docs/theme-space--page#inseting) */ paddingSize?: SpaceSize; } declare const Padbox: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, PadboxProps, never>; export default Padbox;