Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 528 Bytes

File metadata and controls

30 lines (21 loc) · 528 Bytes

Button

Size

Buttons can be small, medium and large in size.

import React from 'react';
import { Button } from 'rslib-module-doc';

export default () => {
  return <Button size="medium" label="Click me"></Button>;
};

Background color

The background color of the button can be set by yourself.

import React from 'react';
import { Button } from 'rslib-module-doc';

export default () => {
  return <Button backgroundColor="red" label="红色"></Button>;
};

API