import * as React from "react"; import ResetButton from "../../button/components/ResetButton"; import { Icon } from "../../icon"; import { IconShapes } from "../../icon/components/Icon"; export interface TextInputButtonProps extends React.ButtonHTMLAttributes { /** * The fill color of the icon inside the button */ color?: string; /** * The id of the SVG symbol we're rendering from a generated sprite */ shape: IconShapes; } const TextInputButton = ({ shape, color, ...other }: TextInputButtonProps) => { delete other.className; delete other.children; return ( ); }; export default TextInputButton;