UNPKG

cdbreact

Version:

Elegant UI kit and reusable components for building mobile-first, responsive websites and web apps

20 lines (19 loc) 528 B
import React from "react"; import PropTypes from "prop-types"; interface Props { className?: string; color?: string; id?: string; isOpen?: boolean; onClick?: any; } declare const HamburgerToggler: { (props: Props): React.JSX.Element; propTypes: { className: PropTypes.Requireable<string>; color: PropTypes.Requireable<string>; id: PropTypes.Requireable<string>; }; }; export default HamburgerToggler; export { HamburgerToggler as CDBHamburgerToggler };