UNPKG

react-lightning-design-system

Version:

Salesforce Lightning Design System components built with React

12 lines (11 loc) 231 B
import { FC, HTMLAttributes } from 'react'; /** * */ export type FormProps = { type?: 'stacked' | 'horizontal' | 'inline' | 'compound'; } & HTMLAttributes<HTMLDivElement>; /** * */ export declare const Form: FC<FormProps>;