Skip to main content

Icons

We use React Icons wrapped with Chakra UI for our icon needs. Please remind the designer if the icon used is not using icons that cannot be found in React Icons

Usage example

// 1. Import
import { Icon } from '@chakra-ui/react';
import { MdSettings } from 'react-icons/md';

// 2. Use the `as` prop
function Example() {
return <Icon as={MdSettings} w={8} h={8} color='red.500' />;
}