soda-material
Version:
A component library that may follow [material design 3](https://m3.material.io/components) (a.k.a. material you)
17 lines (16 loc) • 589 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 horizon
*/
direction?: "vertical" | "horizon" | undefined;
} & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "sd" | "direction"> & import("react").RefAttributes<HTMLHRElement>>;