@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
12 lines (11 loc) • 412 B
TypeScript
import { 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;
_supportsSpacingProps: boolean;
};
export default CountryFlag;