import React, {FC, PropsWithChildren} from "react"; import classNames from "classnames"; import {EmulatedButton} from "../EmulatedButton"; export type ButtonProps = { onClick?: () => void; preset?: 'blue' | 'gray' | 'gray-darker' | 'gray-lighter' | 'transparent', size?: 'large' | 'medium' | 'small' | 'extra-small' | 'ultra-small', width?: 'wrap' | 'full-width' className?: string; } export const Button: FC = ({children, onClick, preset = 'gray', size = 'small', width = 'full-width', className}) => { return {children} }