@fifteen/design-system-vue
Version:
Vue 3 (Composition API + Typescript) implementation of the Fifteen Design System
37 lines (36 loc) • 1.02 kB
TypeScript
import { Color } from '../types/colors';
export interface FDividerProps {
/**
* Color of the divider
*/
color?: Color;
/**
* Light theme of the divider
*/
theme?: 'light' | 'dark' | null;
/**
* Width of the divider
*/
width?: string | number;
/**
* Height of the disvider
*/
height?: string | number;
/**
* Direction of the divider
*/
vertical?: boolean;
/**
* Add margins to the divider
*/
margins?: boolean;
}
declare const _default: import('vue').DefineComponent<FDividerProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<FDividerProps> & Readonly<{}>, {
color: Color;
width: string | number;
height: string | number;
theme: "light" | "dark" | null;
vertical: boolean;
margins: boolean;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;