@radix-ui/themes
Version:
[](https://radix-ui.com/themes)
9 lines (8 loc) • 475 B
TypeScript
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 };