@wonderflow/react-components
Version:
UI components from Wonderflow's Wanda design system
15 lines • 549 B
TypeScript
import { Polymorphic } from '../..';
export declare type ContainerProps = {
/**
* Set the horizontal max-width of the container.
*/
dimension?: 'full' | 'extra-small' | 'small' | 'medium' | 'large' | 'extra-large' | 'fixed';
/**
* Set or remove the container's predefined horizontal padding.
*/
padding?: boolean;
};
declare type PolymorphicContainer = Polymorphic.ForwardRefComponent<'div', ContainerProps>;
export declare const Container: PolymorphicContainer;
export {};
//# sourceMappingURL=container.d.ts.map