import React from "react"; function IconWrapper({ active, children, className, onClick }) { return (
{children}
); } export default IconWrapper;