@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
31 lines (30 loc) • 941 B
text/typescript
import { BaseUIComponentProps, Orientation } from "../utils/types.mjs";
import * as React$1 from "react";
//#region node_modules/@base-ui/react/esm/separator/Separator.d.ts
/**
* A separator element accessible to screen readers.
* Renders a `<div>` element.
*
* Documentation: [Base UI Separator](https://base-ui.com/react/components/separator)
*/
declare const Separator: React$1.ForwardRefExoticComponent<SeparatorProps & React$1.RefAttributes<HTMLDivElement>>;
interface SeparatorProps extends BaseUIComponentProps<'div', Separator.State> {
/**
* The orientation of the separator.
* @default 'horizontal'
*/
orientation?: Orientation;
}
interface SeparatorState {
/**
* The orientation of the separator.
*/
orientation: Orientation;
}
declare namespace Separator {
type Props = SeparatorProps;
type State = SeparatorState;
}
//#endregion
export { SeparatorProps };
//# sourceMappingURL=Separator.d.mts.map