star from Keyline Icons by Keyline Icons · Stroke · MIT Free for personal and commercial use.

Name
star
Set
Keyline Icons
Style
Stroke
Viewbox
24×24
License
MIT

7 other variants in Keyline Icons

The same icon in other sets

Use the star icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11.5386 2.8073C11.6164 2.6212 11.7983 2.5 12 2.5C12.2017 2.5 12.3836 2.6212 12.4614 2.8073L14.87 8.5744C14.9422 8.7473 15.1049 8.8653 15.2916 8.8802L21.5398 9.379C21.7413 9.3951 21.9133 9.531 21.9756 9.7233C22.0379 9.9157 21.9783 10.1266 21.8245 10.2578L17.0671 14.3162C16.924 14.4383 16.8615 14.6302 16.9053 14.8131L18.3593 20.8835C18.4064 21.0798 18.3307 21.2851 18.1675 21.404C18.0044 21.5229 17.7857 21.532 17.6132 21.4271L12.2598 18.1708C12.1002 18.0737 11.8998 18.0737 11.7402 18.1708L6.3868 21.4271C6.2143 21.532 5.9956 21.5229 5.8325 21.404C5.6693 21.2851 5.5936 21.0798 5.6407 20.8835L7.0947 14.8131C7.1385 14.6302 7.076 14.4383 6.9329 14.3162L2.1755 10.2578C2.0217 10.1266 1.962 9.9157 2.0244 9.7233C2.0867 9.531 2.2587 9.3951 2.4602 9.379L8.7084 8.8802C8.8951 8.8653 9.0578 8.7473 9.13 8.5744Z"/></svg>

React

import type { SVGProps } from "react";

export function KeylineIconsStar(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M11.5386 2.8073C11.6164 2.6212 11.7983 2.5 12 2.5C12.2017 2.5 12.3836 2.6212 12.4614 2.8073L14.87 8.5744C14.9422 8.7473 15.1049 8.8653 15.2916 8.8802L21.5398 9.379C21.7413 9.3951 21.9133 9.531 21.9756 9.7233C22.0379 9.9157 21.9783 10.1266 21.8245 10.2578L17.0671 14.3162C16.924 14.4383 16.8615 14.6302 16.9053 14.8131L18.3593 20.8835C18.4064 21.0798 18.3307 21.2851 18.1675 21.404C18.0044 21.5229 17.7857 21.532 17.6132 21.4271L12.2598 18.1708C12.1002 18.0737 11.8998 18.0737 11.7402 18.1708L6.3868 21.4271C6.2143 21.532 5.9956 21.5229 5.8325 21.404C5.6693 21.2851 5.5936 21.0798 5.6407 20.8835L7.0947 14.8131C7.1385 14.6302 7.076 14.4383 6.9329 14.3162L2.1755 10.2578C2.0217 10.1266 1.962 9.9157 2.0244 9.7233C2.0867 9.531 2.2587 9.3951 2.4602 9.379L8.7084 8.8802C8.8951 8.8653 9.0578 8.7473 9.13 8.5744Z"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11.5386 2.8073C11.6164 2.6212 11.7983 2.5 12 2.5C12.2017 2.5 12.3836 2.6212 12.4614 2.8073L14.87 8.5744C14.9422 8.7473 15.1049 8.8653 15.2916 8.8802L21.5398 9.379C21.7413 9.3951 21.9133 9.531 21.9756 9.7233C22.0379 9.9157 21.9783 10.1266 21.8245 10.2578L17.0671 14.3162C16.924 14.4383 16.8615 14.6302 16.9053 14.8131L18.3593 20.8835C18.4064 21.0798 18.3307 21.2851 18.1675 21.404C18.0044 21.5229 17.7857 21.532 17.6132 21.4271L12.2598 18.1708C12.1002 18.0737 11.8998 18.0737 11.7402 18.1708L6.3868 21.4271C6.2143 21.532 5.9956 21.5229 5.8325 21.404C5.6693 21.2851 5.5936 21.0798 5.6407 20.8835L7.0947 14.8131C7.1385 14.6302 7.076 14.4383 6.9329 14.3162L2.1755 10.2578C2.0217 10.1266 1.962 9.9157 2.0244 9.7233C2.0867 9.531 2.2587 9.3951 2.4602 9.379L8.7084 8.8802C8.8951 8.8653 9.0578 8.7473 9.13 8.5744Z"/></svg>
</template>

CSS

.icon-star {
  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%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%20d%3D%22M11.5386%202.8073C11.6164%202.6212%2011.7983%202.5%2012%202.5C12.2017%202.5%2012.3836%202.6212%2012.4614%202.8073L14.87%208.5744C14.9422%208.7473%2015.1049%208.8653%2015.2916%208.8802L21.5398%209.379C21.7413%209.3951%2021.9133%209.531%2021.9756%209.7233C22.0379%209.9157%2021.9783%2010.1266%2021.8245%2010.2578L17.0671%2014.3162C16.924%2014.4383%2016.8615%2014.6302%2016.9053%2014.8131L18.3593%2020.8835C18.4064%2021.0798%2018.3307%2021.2851%2018.1675%2021.404C18.0044%2021.5229%2017.7857%2021.532%2017.6132%2021.4271L12.2598%2018.1708C12.1002%2018.0737%2011.8998%2018.0737%2011.7402%2018.1708L6.3868%2021.4271C6.2143%2021.532%205.9956%2021.5229%205.8325%2021.404C5.6693%2021.2851%205.5936%2021.0798%205.6407%2020.8835L7.0947%2014.8131C7.1385%2014.6302%207.076%2014.4383%206.9329%2014.3162L2.1755%2010.2578C2.0217%2010.1266%201.962%209.9157%202.0244%209.7233C2.0867%209.531%202.2587%209.3951%202.4602%209.379L8.7084%208.8802C8.8951%208.8653%209.0578%208.7473%209.13%208.5744Z%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%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%20d%3D%22M11.5386%202.8073C11.6164%202.6212%2011.7983%202.5%2012%202.5C12.2017%202.5%2012.3836%202.6212%2012.4614%202.8073L14.87%208.5744C14.9422%208.7473%2015.1049%208.8653%2015.2916%208.8802L21.5398%209.379C21.7413%209.3951%2021.9133%209.531%2021.9756%209.7233C22.0379%209.9157%2021.9783%2010.1266%2021.8245%2010.2578L17.0671%2014.3162C16.924%2014.4383%2016.8615%2014.6302%2016.9053%2014.8131L18.3593%2020.8835C18.4064%2021.0798%2018.3307%2021.2851%2018.1675%2021.404C18.0044%2021.5229%2017.7857%2021.532%2017.6132%2021.4271L12.2598%2018.1708C12.1002%2018.0737%2011.8998%2018.0737%2011.7402%2018.1708L6.3868%2021.4271C6.2143%2021.532%205.9956%2021.5229%205.8325%2021.404C5.6693%2021.2851%205.5936%2021.0798%205.6407%2020.8835L7.0947%2014.8131C7.1385%2014.6302%207.076%2014.4383%206.9329%2014.3162L2.1755%2010.2578C2.0217%2010.1266%201.962%209.9157%202.0244%209.7233C2.0867%209.531%202.2587%209.3951%202.4602%209.379L8.7084%208.8802C8.8951%208.8653%209.0578%208.7473%209.13%208.5744Z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/keyline-icons/star.svg?color=%231a73e8&size=48