UNPKG

@vlinderclimate/net-zero-ui

Version:

<div align="center"> <img src="https://storage.yandexcloud.net/static.vlinderstorage.com/Telegram_VlinderTech.png" width=200 /> </div> <h1 align="center">Net Zero UI kit</h1>

8 lines (7 loc) 298 B
import React, { ReactNode } from "react"; import { BoxProps } from "@mui/material/Box"; export interface ContainerProps extends BoxProps { children: string | number | JSX.Element | JSX.Element[] | ReactNode; } declare const Container: React.FC<ContainerProps>; export default Container;