pycui's picture
Add RealChar deployment for HuggingFace (V0)
babeaf6
raw
history blame contribute delete
441 Bytes
/**
* src/components/Common/IconButton.jsx
* A general-purpose Icon Button component
*
* created by Lynchee on 7/19/23
*/
import React from 'react';
import './styles.css';
const IconButton = ({ Icon, className, onClick, bgcolor="default"}) => {
return (
<div className={`icon-button ${className} ${bgcolor}`} onClick={onClick}>
<Icon className="icon-instance-node-small" />
</div>
);
};
export default IconButton;