import * as React from "react"; import styles from "./button.module.scss"; export function IconButton(props: { onClick?: () => void; icon: JSX.Element; text?: string; bordered?: boolean; shadow?: boolean; className?: string; title?: string; }) { return (
{props.icon}
{props.text && (
{props.text}
)}
); }