Nhảy tới nội dung

Switch

Properties

Switch

NameTypeDefaultDescription
labelstring

Thêm nhãn cho switch

sizeSwitchSize

Kích thước của switch

wrapperClassNamestring

Thêm class name cho wrapper của switch

Type

SwitchSize

NameDescription
"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>
);
}