Indicator displays a visual affordance that something has been updated (either with a quantitative number or not)
Props
Localization
Be sure to localize all text strings. Note that localization can lengthen text by 20 to 30 percent.
Variants
Notification
Notification
import { Flex, Indicator } from 'gestalt'; export default function Example() { return ( <Flex alignItems="center" gap={6} height="100%" justifyContent="center" width="100%" > <Indicator accessibilityLabel="Visit the Gestalt documentation" /> </Flex> ); }
Counter
Counter
import { Flex, Indicator } from 'gestalt'; export default function Example() { return ( <Flex alignItems="center" gap={6} height="100%" justifyContent="center" width="100%" > <Indicator accessibilityLabel="Visit the Gestalt documentation" count={3} /> <Indicator accessibilityLabel="Visit the Gestalt documentation" count={16} /> <Indicator accessibilityLabel="Visit the Gestalt documentation" count={100} /> </Flex> ); }