@hhgtech/hhg-components
Version:
Hello Health Group common components
14 lines (13 loc) • 393 B
TypeScript
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 };