@atlrdsgn/kit
Version:
An ever–expanding library of React components, primitives, and tools
13 lines (12 loc) • 556 B
TypeScript
import { ContainerAlignment, ContainerBorder, ContainerFlush, ContainerVariantProps, ContainerWidth } from './container.css';
import { default as React } from 'react';
export type ContainerProps = ContainerVariantProps & React.HTMLAttributes<HTMLDivElement> & {
children: React.ReactNode;
className?: string;
width?: ContainerWidth;
align?: ContainerAlignment;
border?: ContainerBorder | boolean;
flush?: ContainerFlush | boolean;
};
export declare const Container: React.FC<ContainerProps>;
//# sourceMappingURL=container.d.ts.map