/**
 * TEAM: frontend_infra
 * @flow
 */

import * as React from "react";
import IconButton from "../IconButton";

/**
 * @title Blank Buttons
 * @description Blank buttons abandon all button styles except hover and focus states.
 */
export default function IconButtonBare(): React.Node {
  return (
    <IconButton
      kind="blank"
      iconName="rocket"
      size="l"
      type="button"
      onClick={() => null}
    />
  );
}
