import React, { FunctionComponent } from 'react'; /* Font style body-small Font-size 13px Font-weight Regular / 400 Text-transform Uppercase Padding 0 15px border-radius 16px height 32px line-height 32px */ interface CoreButtonProps { className: string, children: any, onClick: () => {}, } const CoreButton: FunctionComponent = ({ children, className, onClick }) => { return } export { CoreButton, CoreButtonProps };