16 lines
551 B
TypeScript
16 lines
551 B
TypeScript
import { Button } from "@/components/ui/button";
|
|
const BasicButton = () => {
|
|
return (
|
|
<div className="flex flex-wrap gap-3">
|
|
<Button>Default</Button>
|
|
<Button color="primary">Primary</Button>
|
|
<Button color="secondary">Secondary</Button>
|
|
<Button color="success">Success</Button>
|
|
<Button color="info">Info</Button>
|
|
<Button color="warning">Warning</Button>
|
|
<Button color="destructive">Destructive</Button>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default BasicButton; |