Country

import Country from 'frui/formats/Country';
Copy

Props

NameTypeRequiredNotes
classNamestringNoStandard HTML class names
flagbooleanNoShow flag
lgbooleanNoShow large country flag
mdbooleanNoShow medium size country flag
smbooleanNoShow small country flag
styleCSS ObjectNoStandard CSS object
textbooleanNoShow country text
valuestringYesDefault value

Basics

United States FlagUnited States
<Country value="US" />
Copy

Customize

You can apply different sizes to the Country format.

Flag

Use flag prop to hide the country flag.

United States
<Country flag={false} value="US" />
Copy

Sizes

Use sm, md, or lg props to change the size of the country flag.

United States FlagUnited States
<Country lg value="US" />
Copy

You can also add your own custom class to Country format or use any combination of frui-format-country, and frui-format-country-flag CSS classes.