nes-ui-react
Version:
A design system that paints the web in 8 bits.
11 lines (10 loc) • 551 B
TypeScript
/// <reference types="react" />
import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export interface ContainerProps extends React.PropsWithChildren<any>, StyleProps, IdProps {
title?: string;
alignTitle?: 'left' | 'center' | 'right';
align?: 'left' | 'right' | 'center';
roundedCorners?: boolean;
}
export declare const Container: ({ id, title, children, style, roundedCorners: roundedCornders, align, alignTitle, className }: ContainerProps) => import("react/jsx-runtime").JSX.Element;