Switch
Properties
Switch
| Name | Type | Default | Description |
|---|---|---|---|
| label | string | Thêm nhãn cho switch | |
| size | SwitchSize | Kích thước của switch | |
| wrapperClassName | string | Thêm class name cho wrapper của switch |
Type
SwitchSize
| Name | Description |
|---|---|
| "small" | Size small |
| "medium" | Size medium |
Example
import React from "react";
import { Page, Switch } from "zmp-ui";
function HomePage(props){
return (
<Page>
<Switch label="Label" />
</Page>
);
}