star small icon
star-small from Health Icons by Resolve to Save Lives · Filled · Shapes · MIT Free for personal and commercial use.
- Name
- star-small
- Set
- Health Icons
- Style
- Filled
- Category
- Shapes
- Viewbox
- 48×48
- License
- MIT
1 other variant in Health Icons
The same icon in other sets
More shapes icons from Health Icons
Use the star small icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><g fill="currentColor"><path d="M23.083 14.568a1.025 1.025 0 0 1 1.834 0l2.452 4.951c.15.3.438.51.77.558l5.484.793a1.018 1.018 0 0 1 .567 1.739l-3.968 3.854a1.02 1.02 0 0 0-.294.902l.937 5.441c.143.833-.734 1.468-1.484 1.075l-4.905-2.57a1.03 1.03 0 0 0-.952 0l-4.905 2.57c-.75.393-1.627-.242-1.484-1.075l.937-5.441a1.02 1.02 0 0 0-.294-.902l-3.968-3.854a1.018 1.018 0 0 1 .567-1.739l5.483-.794c.334-.048.622-.256.77-.557z"/><path fill-rule="evenodd" d="m24 17.222l-1.577 3.185l-1.792-.888l2.452-4.95a1.025 1.025 0 0 1 1.834 0l2.452 4.95l-1.792.888zm6.222 9.24a1.02 1.02 0 0 0-.294.903l.937 5.441c.143.833-.734 1.468-1.484 1.075l-4.905-2.57a1.03 1.03 0 0 0-.952 0l-4.905 2.57c-.75.393-1.627-.242-1.484-1.075l.937-5.441a1.02 1.02 0 0 0-.294-.902l-3.968-3.854a1.018 1.018 0 0 1 .567-1.739l5.483-.794c.334-.048.622-.256.77-.557l1.793.888a3.02 3.02 0 0 1-2.276 1.649l-3.512.508l2.536 2.464l-1.31 1.349l1.31-1.35a3.02 3.02 0 0 1 .872 2.677l-.6 3.488l3.153-1.652a3.03 3.03 0 0 1 2.808 0l3.153 1.652l-.6-3.488a3.02 3.02 0 0 1 .872-2.676zm1.143-3.898l-3.512-.508a3.02 3.02 0 0 1-2.276-1.65l1.792-.887c.15.3.438.51.77.558l5.484.793a1.018 1.018 0 0 1 .567 1.739l-3.968 3.854l-1.393-1.435z" clip-rule="evenodd"/></g></svg>
React
import type { SVGProps } from "react";
export function HealthiconsStarSmall(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><g fill="currentColor"><path d="M23.083 14.568a1.025 1.025 0 0 1 1.834 0l2.452 4.951c.15.3.438.51.77.558l5.484.793a1.018 1.018 0 0 1 .567 1.739l-3.968 3.854a1.02 1.02 0 0 0-.294.902l.937 5.441c.143.833-.734 1.468-1.484 1.075l-4.905-2.57a1.03 1.03 0 0 0-.952 0l-4.905 2.57c-.75.393-1.627-.242-1.484-1.075l.937-5.441a1.02 1.02 0 0 0-.294-.902l-3.968-3.854a1.018 1.018 0 0 1 .567-1.739l5.483-.794c.334-.048.622-.256.77-.557z"/><path fillRule="evenodd" d="m24 17.222l-1.577 3.185l-1.792-.888l2.452-4.95a1.025 1.025 0 0 1 1.834 0l2.452 4.95l-1.792.888zm6.222 9.24a1.02 1.02 0 0 0-.294.903l.937 5.441c.143.833-.734 1.468-1.484 1.075l-4.905-2.57a1.03 1.03 0 0 0-.952 0l-4.905 2.57c-.75.393-1.627-.242-1.484-1.075l.937-5.441a1.02 1.02 0 0 0-.294-.902l-3.968-3.854a1.018 1.018 0 0 1 .567-1.739l5.483-.794c.334-.048.622-.256.77-.557l1.793.888a3.02 3.02 0 0 1-2.276 1.649l-3.512.508l2.536 2.464l-1.31 1.349l1.31-1.35a3.02 3.02 0 0 1 .872 2.677l-.6 3.488l3.153-1.652a3.03 3.03 0 0 1 2.808 0l3.153 1.652l-.6-3.488a3.02 3.02 0 0 1 .872-2.676zm1.143-3.898l-3.512-.508a3.02 3.02 0 0 1-2.276-1.65l1.792-.887c.15.3.438.51.77.558l5.484.793a1.018 1.018 0 0 1 .567 1.739l-3.968 3.854l-1.393-1.435z" clipRule="evenodd"/></g></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><g fill="currentColor"><path d="M23.083 14.568a1.025 1.025 0 0 1 1.834 0l2.452 4.951c.15.3.438.51.77.558l5.484.793a1.018 1.018 0 0 1 .567 1.739l-3.968 3.854a1.02 1.02 0 0 0-.294.902l.937 5.441c.143.833-.734 1.468-1.484 1.075l-4.905-2.57a1.03 1.03 0 0 0-.952 0l-4.905 2.57c-.75.393-1.627-.242-1.484-1.075l.937-5.441a1.02 1.02 0 0 0-.294-.902l-3.968-3.854a1.018 1.018 0 0 1 .567-1.739l5.483-.794c.334-.048.622-.256.77-.557z"/><path fill-rule="evenodd" d="m24 17.222l-1.577 3.185l-1.792-.888l2.452-4.95a1.025 1.025 0 0 1 1.834 0l2.452 4.95l-1.792.888zm6.222 9.24a1.02 1.02 0 0 0-.294.903l.937 5.441c.143.833-.734 1.468-1.484 1.075l-4.905-2.57a1.03 1.03 0 0 0-.952 0l-4.905 2.57c-.75.393-1.627-.242-1.484-1.075l.937-5.441a1.02 1.02 0 0 0-.294-.902l-3.968-3.854a1.018 1.018 0 0 1 .567-1.739l5.483-.794c.334-.048.622-.256.77-.557l1.793.888a3.02 3.02 0 0 1-2.276 1.649l-3.512.508l2.536 2.464l-1.31 1.349l1.31-1.35a3.02 3.02 0 0 1 .872 2.677l-.6 3.488l3.153-1.652a3.03 3.03 0 0 1 2.808 0l3.153 1.652l-.6-3.488a3.02 3.02 0 0 1 .872-2.676zm1.143-3.898l-3.512-.508a3.02 3.02 0 0 1-2.276-1.65l1.792-.887c.15.3.438.51.77.558l5.484.793a1.018 1.018 0 0 1 .567 1.739l-3.968 3.854l-1.393-1.435z" clip-rule="evenodd"/></g></svg> </template>
CSS
.icon-star-small {
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%2048%2048%22%3E%3Cg%20fill%3D%22currentColor%22%3E%3Cpath%20d%3D%22M23.083%2014.568a1.025%201.025%200%200%201%201.834%200l2.452%204.951c.15.3.438.51.77.558l5.484.793a1.018%201.018%200%200%201%20.567%201.739l-3.968%203.854a1.02%201.02%200%200%200-.294.902l.937%205.441c.143.833-.734%201.468-1.484%201.075l-4.905-2.57a1.03%201.03%200%200%200-.952%200l-4.905%202.57c-.75.393-1.627-.242-1.484-1.075l.937-5.441a1.02%201.02%200%200%200-.294-.902l-3.968-3.854a1.018%201.018%200%200%201%20.567-1.739l5.483-.794c.334-.048.622-.256.77-.557z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22m24%2017.222l-1.577%203.185l-1.792-.888l2.452-4.95a1.025%201.025%200%200%201%201.834%200l2.452%204.95l-1.792.888zm6.222%209.24a1.02%201.02%200%200%200-.294.903l.937%205.441c.143.833-.734%201.468-1.484%201.075l-4.905-2.57a1.03%201.03%200%200%200-.952%200l-4.905%202.57c-.75.393-1.627-.242-1.484-1.075l.937-5.441a1.02%201.02%200%200%200-.294-.902l-3.968-3.854a1.018%201.018%200%200%201%20.567-1.739l5.483-.794c.334-.048.622-.256.77-.557l1.793.888a3.02%203.02%200%200%201-2.276%201.649l-3.512.508l2.536%202.464l-1.31%201.349l1.31-1.35a3.02%203.02%200%200%201%20.872%202.677l-.6%203.488l3.153-1.652a3.03%203.03%200%200%201%202.808%200l3.153%201.652l-.6-3.488a3.02%203.02%200%200%201%20.872-2.676zm1.143-3.898l-3.512-.508a3.02%203.02%200%200%201-2.276-1.65l1.792-.887c.15.3.438.51.77.558l5.484.793a1.018%201.018%200%200%201%20.567%201.739l-3.968%203.854l-1.393-1.435z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fg%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%2048%2048%22%3E%3Cg%20fill%3D%22currentColor%22%3E%3Cpath%20d%3D%22M23.083%2014.568a1.025%201.025%200%200%201%201.834%200l2.452%204.951c.15.3.438.51.77.558l5.484.793a1.018%201.018%200%200%201%20.567%201.739l-3.968%203.854a1.02%201.02%200%200%200-.294.902l.937%205.441c.143.833-.734%201.468-1.484%201.075l-4.905-2.57a1.03%201.03%200%200%200-.952%200l-4.905%202.57c-.75.393-1.627-.242-1.484-1.075l.937-5.441a1.02%201.02%200%200%200-.294-.902l-3.968-3.854a1.018%201.018%200%200%201%20.567-1.739l5.483-.794c.334-.048.622-.256.77-.557z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22m24%2017.222l-1.577%203.185l-1.792-.888l2.452-4.95a1.025%201.025%200%200%201%201.834%200l2.452%204.95l-1.792.888zm6.222%209.24a1.02%201.02%200%200%200-.294.903l.937%205.441c.143.833-.734%201.468-1.484%201.075l-4.905-2.57a1.03%201.03%200%200%200-.952%200l-4.905%202.57c-.75.393-1.627-.242-1.484-1.075l.937-5.441a1.02%201.02%200%200%200-.294-.902l-3.968-3.854a1.018%201.018%200%200%201%20.567-1.739l5.483-.794c.334-.048.622-.256.77-.557l1.793.888a3.02%203.02%200%200%201-2.276%201.649l-3.512.508l2.536%202.464l-1.31%201.349l1.31-1.35a3.02%203.02%200%200%201%20.872%202.677l-.6%203.488l3.153-1.652a3.03%203.03%200%200%201%202.808%200l3.153%201.652l-.6-3.488a3.02%203.02%200%200%201%20.872-2.676zm1.143-3.898l-3.512-.508a3.02%203.02%200%200%201-2.276-1.65l1.792-.887c.15.3.438.51.77.558l5.484.793a1.018%201.018%200%200%201%20.567%201.739l-3.968%203.854l-1.393-1.435z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/healthicons/star-small.svg?color=%231a73e8&size=48