Vurox
  • Installing Template
  • Getting started with template files
  • Getting Started with next js
    • Introduction to Next.js
    • Shipping Vurox with _app.js
    • Adding a Global Stylesheet
    • Pages
    • Fetching Data
  • Template Layout
  • Components
    • Alerts
    • Breadcrumbs
    • Badge
    • Buttons
    • Cards
    • Carousel
    • Collapse
    • Comments
    • Dropdown
Powered by GitBook
On this page

Was this helpful?

  1. Components

Buttons

import {Button} from 'antd';
<Button type="primary">Primary</Button>
<Button type="primary" disabled>
  Primary(disabled)
</Button>

<Button>Default</Button>
<Button disabled>Default(disabled)</Button>

<Button type="dashed">Dashed</Button>
<Button type="dashed" disabled>
  Dashed(disabled)
</Button>

<Button danger>Danger Default</Button>
<Button danger disabled>
  Danger Default(disabled)
</Button>

API

To get a customized button, just set type/shape/size/loading/disabled.

Property

Description

Type

Default

Version

disabled

disabled state of button

boolean

false

ghost

make background transparent and invert text and border colors

boolean

false

href

redirect url of link button

string

-

htmlType

string

button

icon

set the icon component of button

ReactNode

-

loading

set the loading status of button

boolean | { delay: number }

false

shape

can be set to circle, round or omitted

string

-

size

set the size of button

large | middle | small

target

same as target attribute of a, works when href is specified

string

-

type

can be set to primary ghost dashed link or omitted (meaning default)

string

default

onClick

set the handler to handle click event

(event) => void

-

block

option to fit button width to its parent width

boolean

false

danger

set the danger status of button

boolean

false

PreviousBadgeNextCards

Last updated 4 years ago

Was this helpful?

set the original html type of button, see:

MDN