import "./index.css"; export default ({ text = "", className = "", backgroundImage }) => { return (
{backgroundImage && (
)}
{text ? {text} : null}
); };