()
| 3 | import classes from './UserButton.module.css'; |
| 4 | |
| 5 | export function UserButton() { |
| 6 | return ( |
| 7 | <UnstyledButton className={classes.user}> |
| 8 | <Group> |
| 9 | <Avatar |
| 10 | src="https://raw.githubusercontent.com/mantinedev/mantine/master/.demo/avatars/avatar-8.png" |
| 11 | radius="xl" |
| 12 | alt="Harriette Spoonlicker" |
| 13 | /> |
| 14 | |
| 15 | <div style={{ flex: 1 }}> |
| 16 | <Text size="sm" fw={500}> |
| 17 | Harriette Spoonlicker |
| 18 | </Text> |
| 19 | |
| 20 | <Text c="dimmed" size="xs"> |
| 21 | hspoonlicker@outlook.com |
| 22 | </Text> |
| 23 | </div> |
| 24 | |
| 25 | <IconChevronRight size={14} stroke={1.5} /> |
| 26 | </Group> |
| 27 | </UnstyledButton> |
| 28 | ); |
| 29 | } |
nothing calls this directly
no outgoing calls
no test coverage detected