@fifteen/design-system-vue
Version:
Vue 3 (Composition API + Typescript) implementation of the Fifteen Design System
26 lines (25 loc) • 896 B
TypeScript
import { Color } from '../types/colors';
export type FLogoLineNumber = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15;
export type FLogoLineDelta = {
[K in FLogoLineNumber]?: number;
};
export interface FLogoAnimatableProps {
/**
* Base width of the svg, regardless line displacements
*/
width?: number;
/**
* Logo color
*/
color?: Color;
/**
* Line outer displacements
*/
delta?: FLogoLineDelta;
}
declare const _default: import('vue').DefineComponent<FLogoAnimatableProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<FLogoAnimatableProps> & Readonly<{}>, {
color: Color;
width: number;
delta: FLogoLineDelta;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;