const WarningIcon = ({ className }: { className?: string }) => {
  return (
    <svg
      width="22"
      height="22"
      viewBox="0 0 22 22"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <circle cx="11" cy="11" r="10.5" stroke="currentColor" />
      <path
        d="M11.7549 16H10.1484V8.43945H11.7549V16ZM10.0527 6.43652C10.0527 6.14941 10.1302 5.92839 10.2852 5.77344C10.4447 5.61849 10.6702 5.54102 10.9619 5.54102C11.2445 5.54102 11.4632 5.61849 11.6182 5.77344C11.7777 5.92839 11.8574 6.14941 11.8574 6.43652C11.8574 6.70996 11.7777 6.92643 11.6182 7.08594C11.4632 7.24089 11.2445 7.31836 10.9619 7.31836C10.6702 7.31836 10.4447 7.24089 10.2852 7.08594C10.1302 6.92643 10.0527 6.70996 10.0527 6.43652Z"
        fill="currentColor"
      />
    </svg>
  );
};

export { WarningIcon };
