/*! ========================================================= * Argon Dashboard Chakra PRO - v1.0.0 ========================================================= * Product Page: https://www.creative-tim.com/product/argon-dashboard-chakra-pro * Copyright 2022 Creative Tim (https://www.creative-tim.com/) * Designed and Coded by Simmmple & Creative Tim ========================================================= * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. */ // Chakra Imports import { Button, useColorModeValue } from "@chakra-ui/react"; // Custom Icons import { SettingsIcon } from "components/Icons/Icons"; import PropTypes from "prop-types"; import React from "react"; export default function FixedPlugin(props) { const { secondary, onChange, onSwitch, fixed, ...rest } = props; // Chakra Color Mode let navbarIcon = useColorModeValue("gray.500", "gray.200"); let bgButton = useColorModeValue("white", "gray.600"); const settingsRef = React.useRef(); return ( <> ); } FixedPlugin.propTypes = { fixed: PropTypes.bool, onChange: PropTypes.func, onSwitch: PropTypes.func, };