import React, { FunctionComponent } from 'react' import styled from 'styled-components' import { CoreButton } from '../CoreButton/CoreButton' // import { Toto } from '../../../../lib/index' // interface PrimaryButtonProps extends CoreButtonProps { // someStyle: string, // } // const PrimaryButton: FunctionComponent = ({ children, someStyle, ...rest }) => { // return {children} // } const PrimaryButton = styled(CoreButton)` color: red; ` export { PrimaryButton }