UNPKG

@radix-ui/themes

Version:

[![Radix Themes Logo](https://radix-ui.com/social/themes.png)](https://radix-ui.com/themes)

9 lines (8 loc) 475 B
import * as React from 'react'; import type { ComponentPropsWithout, RemovedProps } from '../helpers/index.js'; import type { MarginProps, LayoutProps, SectionOwnProps } from '../props/index.js'; interface SectionProps extends ComponentPropsWithout<'div', RemovedProps>, MarginProps, LayoutProps, SectionOwnProps { } declare const Section: React.ForwardRefExoticComponent<SectionProps & React.RefAttributes<HTMLDivElement>>; export { Section }; export type { SectionProps };