UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

22 lines (21 loc) 1.09 kB
import { DeviceBreakpointsType } from '../../types/breakpoints/breakpoints'; type OperativeLayoutContainerType = { maxWidthParentContainer?: { [key in DeviceBreakpointsType]?: string; }; $width: string; }; type OperativeLayoutColors = { $color?: string; $align?: string; $paddingBottom?: string; $margin?: string; $height?: string; $width?: { [key in DeviceBreakpointsType]?: string; }; $contentOverflowColor?: boolean; }; export declare const OperativeLayoutColor: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, OperativeLayoutColors>> & string; export declare const OperativeLayoutContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, OperativeLayoutContainerType>> & string; export {};