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>

15 lines (14 loc) 780 B
import React from "react"; export interface SectionProps { children?: JSX.Element | JSX.Element[] | string | number | Element[]; noContainer?: boolean; noPadding?: boolean; topIndent?: boolean; sx?: object; id?: string; } interface StyledSectionProps extends Pick<SectionProps, "noPadding" | "topIndent"> { } export declare const SectionBox: import("styled-components").StyledComponent<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material/Box").BoxTypeMap<{}, "div">>, import("@mui/material/styles").Theme, import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & StyledSectionProps, never>; declare const SectionComponent: React.FC<SectionProps>; export default SectionComponent;