UnstyledButtonpolymorphic

Unstyled polymorphic button
Import

Usage

UnstyledButton resets default button styles, it can be used to create custom buttons:

import { UnstyledButton, Group, Avatar, Text } from '@mantine/core';
function Demo() {
return (
<UnstyledButton>
<Group>
<Avatar size={40} color="blue">BH</Avatar>
<div>
<Text>Bob Handsome</Text>
<Text size="xs" color="dimmed">bob@handsome.inc</Text>
</div>
</Group>
</UnstyledButton>
);
}