UNPKG

@hhgtech/hhg-components

Version:
14 lines (13 loc) 393 B
import React from 'react'; import { ReactNode, CSSProperties } from 'react'; export type Props = { children?: ReactNode; className?: string; style?: CSSProperties; type?: 'helloSites' | 'marryBaby'; }; /** * @deprecated Consider to use mantine */ declare const Container: ({ children, className, style, type }: Props) => React.JSX.Element; export { Container };