soda-material
Version:
A React(>=18) component library that may follow [Material Design 3](https://m3.material.io/components) (a.k.a. Material You)
17 lines (16 loc) • 602 B
TypeScript
/// <reference types="react" />
import './divider.scss';
/**
* The divider has margin included by default, you can remove it by adding `style={{margin:"0"}}`
* @specs https://m3.material.io/components/divider/specs
*/
export declare const Divider: import("react").ForwardRefExoticComponent<{
/**
* @default full
*/
sd?: "inset" | "full" | undefined;
/**
* @default horizontal
*/
direction?: "horizontal" | "vertical" | undefined;
} & Omit<import("react").HTMLProps<HTMLElement>, "as" | "ref" | "sd" | "direction"> & import("react").RefAttributes<HTMLHRElement>>;