next-icons-logoNext IconsAll Icons
export type IconProps = {
  size?: number | string;
  color?: string;
  className?: string;
} & React.SVGProps<SVGSVGElement>;

export const BeerIcon = ({
  size = 24,
  color = "currentColor",
  className,
  ...props
}: IconProps) => (
  <svg
    xmlns="http://www.w3.org/2000/svg"
    viewBox="0 0 24 24"
    width={size}
    height={size}
    fill={color}
    className={className}
    {...props}
  >
      <path d="m20,6h-2v-2c0-.55-.45-1-1-1H3c-.55,0-1,.45-1,1v14c0,1.65,1.35,3,3,3h10c1.65,0,3-1.35,3-3v-1h2c1.1,0,2-.9,2-2v-7c0-1.1-.9-2-2-2Zm-4,12c0,.55-.45,1-1,1H5c-.55,0-1-.45-1-1V5h12v13Zm4-3h-2v-7h2v7Z" />
      <path d="M6 7H8V16H6z" />
      <path d="M12 7H14V16H12z" />
  </svg>
);

Icon

Beer

Category

elements

Use case

Use this icon in navbar items, social link groups, profile actions, settings rows, and call-to-action buttons.

Size

48px

Color

#18181b

Related elements icons

AlarmBoltBookBugCalenderClockCloudCoffee