setSettings
This commit is contained in:
@ -4,7 +4,11 @@ import "./basebutton.scss";
|
||||
|
||||
export const BaseButton = ({ children, styles, onClick, ...props }) => {
|
||||
return (
|
||||
<button onClick={onClick} className={styles ? `${styles} button` : "button"} {...props}>
|
||||
<button
|
||||
onClick={onClick}
|
||||
className={styles ? `${styles} button` : "button"}
|
||||
{...props}
|
||||
>
|
||||
{children}
|
||||
</button>
|
||||
);
|
||||
|
Reference in New Issue
Block a user