1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-24 03:54:42 +04:00

Delete Button.stories.js

This commit is contained in:
Paweł Kuna
2022-08-06 00:17:18 +02:00
committed by GitHub
parent a78a88041e
commit d1180f3fc7
-17
View File
@@ -1,17 +0,0 @@
export default {
title: 'Example/Button',
};
const Template = ({ label, ...args }) => {
return `<button class="btn">${label}</button>`;
};
export const Primary = () => `<button class="btn btn-primary">Primary button</button>`;
export const Secondary = () => `<button class="btn">Secondary button</button>`;
export const Danger = () => `<button class="btn btn-danger">Danger button</button>`;
export const Large = () => `<button class="btn btn-lg">Large button</button>`;
export const Small = () => `<button class="btn btn-sm">Small button</button>`;