import classNames from "classnames" import PropTypes from "prop-types" import { buttonLinkPropTypes } from "utils/types" import CustomLink from "./custom-link" const ButtonContent = ({ button, appearance, compact }) => { return (
{button.text}
) } const ButtonLink = ({ button, appearance, compact = false }) => { return ( ) } ButtonLink.propTypes = { button: buttonLinkPropTypes, appearance: PropTypes.oneOf([ "dark", "white-outline", "white", "dark-outline", ]), compact: PropTypes.bool, } export default ButtonLink