/* global React */
(function () {
const { useState } = React;
const T = window.SC_T;
function PrimaryButton({ children, onClick, disabled, full = true, loading, leftIcon, style }) {
const [pressed, setPressed] = useState(false);
return (
);
}
function GhostButton({ children, onClick, leftIcon, style, danger, disabled }) {
const [hover, setHover] = useState(false);
return (
);
}
Object.assign(window, { PrimaryButton, GhostButton });
})();