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

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

/**
 * @title Bare icon button
 * @description Bare buttons retain normal button padding but have no button styles besides hover and focus states.
 */
export default function IconButtonBare(): React.Node {
  return (
    <IconButton kind="bare" iconName="cog" type="button" onClick={() => null} />
  );
}
