UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

9 lines (8 loc) 374 B
import type { SpaceAllProps } from '../space/Space'; type CountryFlagProps = { iso?: string; size?: 'auto' | 'xx-small' | 'x-small' | 'small' | 'medium' | 'large' | 'x-large'; shape?: 'round' | 'square'; } & Omit<SpaceAllProps, 'size'>; declare const CountryFlag: (props: CountryFlagProps) => import("react/jsx-runtime").JSX.Element; export default CountryFlag;