DsButtonDestructive
Descrição:
Os botões Destructive são para a ação de cancelamento e exclusão.
Importando:
import { DsButtonDestructive } from "@raisesistemas/ds";
Usando:
export function Demo() {
return (
<>
<DsButtonDestructive>Click Aqui</DsButtonDestructive>
<DsButtonDestructive disabled>Click Aqui</DsButtonDestructive>
<DsButtonDestructive loading>Click Aqui</DsButtonDestructive>
<DsButtonDestructive compact>Click Aqui</DsButtonDestructive>
</>
);
}