@cavilha/layout
Version:
A set of components used to design grid layouts
11 lines (10 loc) • 439 B
TypeScript
import React from 'react';
import type * as Polymorphic from '@radix-ui/react-polymorphic';
import * as S from './Container.styles';
export declare type ContainerProps = {
children?: React.ReactNode;
} & S.Variants;
declare const DEFAULT_TAG = "div";
declare type ContainerComponent = Polymorphic.ForwardRefComponent<typeof DEFAULT_TAG, ContainerProps>;
declare const Container: ContainerComponent;
export default Container;