UNPKG

@yandex/ui

Version:

Yandex UI components

15 lines (14 loc) 320 B
import { FC } from 'react'; export interface DividerLineProps { /** * Высота разделителя в пикселях * * @default 1 */ size?: number; /** * Цвет разделителя */ color?: string; } export declare const DividerLine: FC<DividerLineProps>;