@tmnrp/react-theme-switcher
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

@tmnrp/react-theme-switcher

@tmnrp/react-theme-switcher is a lightweight latest treanding markup to display the theme-switcher.

Features

  • Configurable height, frequency and all html attributes with ease.

Examples link

https://tmnrp-react-ui.vercel.app/theme-switcher

Installation link

$ npm i @tmnrp/react-theme-switcher

Properties

@tmnrp/react-theme-switcher (IProgressbar) is currently extended with the following properties.

Properties type Description
defaultTheme string Default theme value to start with.
children (theme: string) => React.ReactNode; Renderable children receives theme as parameter.
...props HTML div props Common HTML div properties that needs to be applied to the theme-switcher.

IProgressbarMethods is currently extended with the following methods.

Properties type Description
setTheme function Set the state value theme

Implementation for single page breadcrumb

import { Progressbar, IProgressbarMethods } from "@tmnrp/react-theme-switcher";

const App = () => {
  const pbRef = useRef<IProgressbarMethods>(null);

  //
  return (
    <div className="flex items-center justify-center w-full h-full">
      <ThemeSwitcher ref={tsRef} defaultTheme="dark" className="cursor-pointer">
          {(theme: string) => (
            <div className="flex w-full justify-between">
              <div className="flex">
                <p className="pr-2">Theme: </p>
                <p className="uppercase font-extrabold">{theme}</p>
              </div>
              <div
                onClick={() =>
                  tsRef.current?.setTheme(() => {
                    // custom theme logic
                    return theme === "dark" ? "light" : "dark";
                  })
                }
              >
                {theme === "dark" ? (
                  <GoogleMaterialIcons iconName="brightness_high" />
                ) : (
                  <GoogleMaterialIcons iconName="brightness_4" />
                )}
              </div>
            </div>
          )}
        </ThemeSwitcher>
    </div>
  );
};

Todos

  • Let me know :-)

License

MIT Tony Martin

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.3
    0
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.3
    0
  • 1.0.2
    0
  • 1.0.1
    0

Package Sidebar

Install

npm i @tmnrp/react-theme-switcher

Weekly Downloads

0

Version

1.0.3

License

MIT

Unpacked Size

11.8 kB

Total Files

9

Last publish

Collaborators

  • tmnrp