Button Bileşeni

Basit Kullanım

En temel button kullanımı.

<Button
  variant="default"
/>

Outline Variant

Outline stilinde button kullanımı.

<Button
  variant="outline"
/>

Disabled Durumu

Devre dışı bırakılmış button örneği.

<Button
  disabled
/>

Loading Durumu

Loading durumu ile button kullanımı.

<Button
  isLoading
/>

Ghost Varyant

Ghost stilinde button kullanımı.

<Button
  variant="ghost"
/>

Secondary Varyant

Secondary stilinde button kullanımı.

<Button
  variant="secondary"
/>

Destructive Varyant

Destructive stilinde button kullanımı.

<Button
  variant="destructive"
/>

Left Icon

Left icon ile button kullanımı.

<Button
  leftIcon={<MailIcon className="w-4 h-4" />}
/>

Right Icon

Right icon ile button kullanımı.

<Button
  rightIcon={<CheckIcon className="w-4 h-4" />}
/>

Small Boyut

Small boyut ile button kullanımı.

<Button
  sizeVariant="sm"
/>

Medium Boyut

Medium boyut ile button kullanımı.

<Button
  sizeVariant="md"
/>

Large Boyut

Large boyut ile button kullanımı.

<Button
  sizeVariant="lg"
/>

XLarge Boyut

XLarge boyut ile button kullanımı.

<Button
  sizeVariant="xl"
/>