chess-queen from Font Awesome 6 Regular by Dave Gandy · Regular · Chess · CC-BY-4.0 Attribution required.

Name
chess-queen
Set
Font Awesome 6 Regular
Style
Regular
Category
Chess
Viewbox
512×512
License
CC BY 4.0

The same icon in other sets

More chess icons from Font Awesome 6 Regular

Use the chess queen icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 512 512"><path fill="currentColor" d="M256 96a48 48 0 1 0 0-96a48 48 0 1 0 0 96m-95.2-8c-18.1 0-31.3 12.8-35.6 26.9c-8 26.2-32.4 45.2-61.2 45.2c-10 0-19.4-2.3-27.7-6.3c-7.6-3.7-16.7-3.3-24 1.2c-11.6 7.1-15.4 22.1-8.6 33.9L97.6 352H153L70 207.9c40.5-2.2 75.3-25.9 93.1-59.8c22 26.8 55.4 43.9 92.8 43.9s70.8-17.1 92.8-43.9c17.8 34 52.6 57.7 93.1 59.8L359 352h55.4l93.9-163.1c6.8-11.7 3-26.7-8.6-33.8c-7.3-4.5-16.4-4.9-24-1.2c-8.4 4-17.7 6.3-27.7 6.3c-28.8 0-53.2-19-61.2-45.2c-4.3-14.2-17.5-27-35.6-27c-14.5 0-26.3 8.5-32.4 19.3c-12.4 22-35.9 36.7-62.8 36.7s-50.4-14.8-62.8-36.7C187.1 96.5 175.4 88 160.8 88m-27.6 344h245.6l16.6 32H116.7l16.6-32zm283.7-30.7c-5.5-10.6-16.5-17.3-28.4-17.3h-265c-12 0-22.9 6.7-28.4 17.3l-26.5 51.2c-3 5.8-4.6 12.2-4.6 18.7c0 22.5 18.2 40.8 40.8 40.8h302.5c22.5 0 40.8-18.2 40.8-40.8c0-6.5-1.6-12.9-4.6-18.7L417 401.3z"/></svg>

React

import type { SVGProps } from "react";

export function Fa6RegularChessQueen(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 512 512"><path fill="currentColor" d="M256 96a48 48 0 1 0 0-96a48 48 0 1 0 0 96m-95.2-8c-18.1 0-31.3 12.8-35.6 26.9c-8 26.2-32.4 45.2-61.2 45.2c-10 0-19.4-2.3-27.7-6.3c-7.6-3.7-16.7-3.3-24 1.2c-11.6 7.1-15.4 22.1-8.6 33.9L97.6 352H153L70 207.9c40.5-2.2 75.3-25.9 93.1-59.8c22 26.8 55.4 43.9 92.8 43.9s70.8-17.1 92.8-43.9c17.8 34 52.6 57.7 93.1 59.8L359 352h55.4l93.9-163.1c6.8-11.7 3-26.7-8.6-33.8c-7.3-4.5-16.4-4.9-24-1.2c-8.4 4-17.7 6.3-27.7 6.3c-28.8 0-53.2-19-61.2-45.2c-4.3-14.2-17.5-27-35.6-27c-14.5 0-26.3 8.5-32.4 19.3c-12.4 22-35.9 36.7-62.8 36.7s-50.4-14.8-62.8-36.7C187.1 96.5 175.4 88 160.8 88m-27.6 344h245.6l16.6 32H116.7l16.6-32zm283.7-30.7c-5.5-10.6-16.5-17.3-28.4-17.3h-265c-12 0-22.9 6.7-28.4 17.3l-26.5 51.2c-3 5.8-4.6 12.2-4.6 18.7c0 22.5 18.2 40.8 40.8 40.8h302.5c22.5 0 40.8-18.2 40.8-40.8c0-6.5-1.6-12.9-4.6-18.7L417 401.3z"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 512 512"><path fill="currentColor" d="M256 96a48 48 0 1 0 0-96a48 48 0 1 0 0 96m-95.2-8c-18.1 0-31.3 12.8-35.6 26.9c-8 26.2-32.4 45.2-61.2 45.2c-10 0-19.4-2.3-27.7-6.3c-7.6-3.7-16.7-3.3-24 1.2c-11.6 7.1-15.4 22.1-8.6 33.9L97.6 352H153L70 207.9c40.5-2.2 75.3-25.9 93.1-59.8c22 26.8 55.4 43.9 92.8 43.9s70.8-17.1 92.8-43.9c17.8 34 52.6 57.7 93.1 59.8L359 352h55.4l93.9-163.1c6.8-11.7 3-26.7-8.6-33.8c-7.3-4.5-16.4-4.9-24-1.2c-8.4 4-17.7 6.3-27.7 6.3c-28.8 0-53.2-19-61.2-45.2c-4.3-14.2-17.5-27-35.6-27c-14.5 0-26.3 8.5-32.4 19.3c-12.4 22-35.9 36.7-62.8 36.7s-50.4-14.8-62.8-36.7C187.1 96.5 175.4 88 160.8 88m-27.6 344h245.6l16.6 32H116.7l16.6-32zm283.7-30.7c-5.5-10.6-16.5-17.3-28.4-17.3h-265c-12 0-22.9 6.7-28.4 17.3l-26.5 51.2c-3 5.8-4.6 12.2-4.6 18.7c0 22.5 18.2 40.8 40.8 40.8h302.5c22.5 0 40.8-18.2 40.8-40.8c0-6.5-1.6-12.9-4.6-18.7L417 401.3z"/></svg>
</template>

CSS

.icon-chess-queen {
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M256%2096a48%2048%200%201%200%200-96a48%2048%200%201%200%200%2096m-95.2-8c-18.1%200-31.3%2012.8-35.6%2026.9c-8%2026.2-32.4%2045.2-61.2%2045.2c-10%200-19.4-2.3-27.7-6.3c-7.6-3.7-16.7-3.3-24%201.2c-11.6%207.1-15.4%2022.1-8.6%2033.9L97.6%20352H153L70%20207.9c40.5-2.2%2075.3-25.9%2093.1-59.8c22%2026.8%2055.4%2043.9%2092.8%2043.9s70.8-17.1%2092.8-43.9c17.8%2034%2052.6%2057.7%2093.1%2059.8L359%20352h55.4l93.9-163.1c6.8-11.7%203-26.7-8.6-33.8c-7.3-4.5-16.4-4.9-24-1.2c-8.4%204-17.7%206.3-27.7%206.3c-28.8%200-53.2-19-61.2-45.2c-4.3-14.2-17.5-27-35.6-27c-14.5%200-26.3%208.5-32.4%2019.3c-12.4%2022-35.9%2036.7-62.8%2036.7s-50.4-14.8-62.8-36.7C187.1%2096.5%20175.4%2088%20160.8%2088m-27.6%20344h245.6l16.6%2032H116.7l16.6-32zm283.7-30.7c-5.5-10.6-16.5-17.3-28.4-17.3h-265c-12%200-22.9%206.7-28.4%2017.3l-26.5%2051.2c-3%205.8-4.6%2012.2-4.6%2018.7c0%2022.5%2018.2%2040.8%2040.8%2040.8h302.5c22.5%200%2040.8-18.2%2040.8-40.8c0-6.5-1.6-12.9-4.6-18.7L417%20401.3z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M256%2096a48%2048%200%201%200%200-96a48%2048%200%201%200%200%2096m-95.2-8c-18.1%200-31.3%2012.8-35.6%2026.9c-8%2026.2-32.4%2045.2-61.2%2045.2c-10%200-19.4-2.3-27.7-6.3c-7.6-3.7-16.7-3.3-24%201.2c-11.6%207.1-15.4%2022.1-8.6%2033.9L97.6%20352H153L70%20207.9c40.5-2.2%2075.3-25.9%2093.1-59.8c22%2026.8%2055.4%2043.9%2092.8%2043.9s70.8-17.1%2092.8-43.9c17.8%2034%2052.6%2057.7%2093.1%2059.8L359%20352h55.4l93.9-163.1c6.8-11.7%203-26.7-8.6-33.8c-7.3-4.5-16.4-4.9-24-1.2c-8.4%204-17.7%206.3-27.7%206.3c-28.8%200-53.2-19-61.2-45.2c-4.3-14.2-17.5-27-35.6-27c-14.5%200-26.3%208.5-32.4%2019.3c-12.4%2022-35.9%2036.7-62.8%2036.7s-50.4-14.8-62.8-36.7C187.1%2096.5%20175.4%2088%20160.8%2088m-27.6%20344h245.6l16.6%2032H116.7l16.6-32zm283.7-30.7c-5.5-10.6-16.5-17.3-28.4-17.3h-265c-12%200-22.9%206.7-28.4%2017.3l-26.5%2051.2c-3%205.8-4.6%2012.2-4.6%2018.7c0%2022.5%2018.2%2040.8%2040.8%2040.8h302.5c22.5%200%2040.8-18.2%2040.8-40.8c0-6.5-1.6-12.9-4.6-18.7L417%20401.3z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fa6-regular/chess-queen.svg?color=%231a73e8&size=48