UNPKG

@fifteen/design-system-vue

Version:

Vue 3 (Composition API + Typescript) implementation of the Fifteen Design System

22 lines (21 loc) 705 B
import { Color } from '../types/colors'; export interface FLoaderProps { /** * Color of the loader icon */ color?: Color; /** * Width of the loader */ width?: string | number; /** * Height of the loader */ height?: string | number; } declare const _default: import('vue').DefineComponent<FLoaderProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<FLoaderProps> & Readonly<{}>, { color: Color; width: string | number; height: string | number; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; export default _default;