apphouse
Version:
Component library for React that uses observable state management and theme-able components.
28 lines (27 loc) • 639 B
TypeScript
import React from 'react';
interface SeparatorProps {
/**
* The thickness of the separator
* @default 1
* @optional
*/
thickness?: number;
/**
* The orientation of the separator
* @default "horizontal"
*/
orientation?: 'horizontal' | 'vertical';
/**
* The alpha value (from 0 to 1) to be applied to the separator
* @default 0.1
* @optional
*/
alpha?: number;
/**
* The gap between the separator and the content
* @default tokens.spacings.s
*/
gap?: number | string;
}
export declare const Separator: React.FC<SeparatorProps>;
export {};