1.0.4 • Published 4 months ago

day-night-switch v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

day-night-switch

一个白天夜晚样式切换的组件,基于react封装。 源码:https://github.com/Xiumuzaidiao/Day-night-toggle-button

demo

select day select day

关于

组件源码:https://github.com/PiDazhong/day-night-swicth

props

style className value onChange

使用实例

import React, { useState } from 'react';
import DayNightSwitch from 'day-night-switch';

const myComponent = () => {
  const [light, setLight] = useState(true);

  return (
    <DayNightSwitch
      value={light}
      onChange={setLight}
      style={{
        transform: 'scale(0.33)'
      }}
      className="theme-switch"
    />
  )
}
1.0.4

4 months ago

1.0.3

4 months ago

1.0.2

4 months ago

1.0.1

4 months ago

1.0.0

4 months ago