Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
319 Bytes
import React from "react";
import "./CustomButton.scss";
const CustomButton = ({ children, signin, ...otherProps }) => {
return (
<button
className={`${signin ? `signin` : null} custom-button`}
{...otherProps}
>
{children}
</button>
);
};
export default CustomButton;