diff --git a/src/components/IconButton/IconButton.jsx b/src/components/IconButton/IconButton.jsx new file mode 100644 index 00000000..5484928b --- /dev/null +++ b/src/components/IconButton/IconButton.jsx @@ -0,0 +1,12 @@ +import { Icon } from "../Icon/Icon"; +import { ReactButton } from "../ReactButton"; + +const IconButton = ({ icon, text, ...props }) => { + return ( + }> + {text} + + ); +}; + +export { IconButton }; diff --git a/src/components/IconButton/index.jsx b/src/components/IconButton/index.jsx new file mode 100644 index 00000000..c62ce989 --- /dev/null +++ b/src/components/IconButton/index.jsx @@ -0,0 +1 @@ +export { IconButton } from "./IconButton";