import React from 'react'
function ButtonBase(props) {
let color = "bg-secondary hover:bg-trinary"
switch (props.type) {
case "warning":
color = "bg-accent4 hover:bg-accent4-dark"
break;
case "danger":
color = "bg-red-700 hover:bg-red-800"
break;
case "accent":
color = "bg-accent hover:bg-accent-dark"
break;
case "accent2":
color = "bg-accent2 hover:bg-accent2-dark"
break;
case "accent3":
color = "bg-accent3 hover:bg-accent3-dark"
break;
case "accent5":
color = "bg-accent5 hover:bg-accent5-dark"
break;
default:
color = ""
break;
}
return (
)
}
export function ButtonBig(props) {
return (
{props.children}
)
}
export default function Button(props) {
return (
{props.children}
)
}
export function ButtonSmall(props) {
return (
{props.children}
)
}
export function ButtonRound(props) {
return (
{props.children}
)
}
export function IconButton({icon,...props}){
return(
)
}