# Avatar Avatars can be used to represent people. For personal avatars, offer personalization options. As users may choose not to personalize an avatar, provide delightful defaults. When used with a specific logo, avatars can also be used to represent brand ```jsx import Avatar from 'react-toolbox/lib/avatar'; const GithubIcon = () => ( ); const AvatarTest = () => (
}/>
); ``` ## Properties | Name | Type | Default | Description| |:-----|:-----|:-----|:-----| | `children` | `Node` | | Children for the avatar. You can pass an SVG for a custom icon or, for example, an image.| | `className` | `String` | `''` | Set a class to style the Component.| | `icon` | `String` or `Element` | | A key to identify an Icon from Material Design Icons or a custom Icon Element.| | `image` | `String` or `Element` | | An image source or an image element. | | `title` | `String` | `false` | A title for the image. If there is image, the first letter will be displayed as avatar. |