@fifteen/design-system-vue
Version:
Vue 3 (Composition API + Typescript) implementation of the Fifteen Design System
23 lines (22 loc) • 874 B
TypeScript
import { FlagCode } from '../types/flags';
export interface FFlagIconProps {
/**
* Code of the country, following the ISO 3166 standard
* @deprecated Use flagCode prop instead
*/
countryCode?: FlagCode;
/**
* Code of the flag, following the ISO 3166 standard + regional flags (see /src/flags.ts for full list)
*/
flagCode?: FlagCode;
/**
* Size of the flag icon
*/
size?: string | number;
}
declare const _default: import('vue').DefineComponent<FFlagIconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<FFlagIconProps> & Readonly<{}>, {
size: string | number;
countryCode: FlagCode;
flagCode: FlagCode;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;