En temel button kullanımı.
<Button
variant="default"
/>
Outline stilinde button kullanımı.
<Button
variant="outline"
/>
Devre dışı bırakılmış button örneği.
<Button
disabled
/>
Loading durumu ile button kullanımı.
<Button
isLoading
/>
Ghost stilinde button kullanımı.
<Button
variant="ghost"
/>
Secondary stilinde button kullanımı.
<Button
variant="secondary"
/>
Destructive stilinde button kullanımı.
<Button
variant="destructive"
/>
Left icon ile button kullanımı.
<Button
leftIcon={<MailIcon className="w-4 h-4" />}
/>
Right icon ile button kullanımı.
<Button
rightIcon={<CheckIcon className="w-4 h-4" />}
/>
Small boyut ile button kullanımı.
<Button
sizeVariant="sm"
/>
Medium boyut ile button kullanımı.
<Button
sizeVariant="md"
/>
Large boyut ile button kullanımı.
<Button
sizeVariant="lg"
/>
XLarge boyut ile button kullanımı.
<Button
sizeVariant="xl"
/>