import React from 'react'; export interface ButtonBaseProps extends Omit, 'color'> { /** * The component tag used * default: button */ component?: React.ElementType; /** * The URL to link to when the button is clicked. * If defined, an `a` element will be used as the root node. */ href?: string; /** * The content of the component. */ children?: React.ReactNode; }