UNPKG

sebikostudio-icons

Version:
14 lines (9 loc) 2.1 kB
import React, { forwardRef } from 'react'; export const SparklesIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "sparks, ai, stars"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M11.4707 2.3668C11.6541 1.87773 12.3459 1.87773 12.5293 2.36681L13.5645 5.12735C14.1377 6.65604 15.3439 7.86223 16.8726 8.43549L19.6332 9.4707C20.1223 9.6541 20.1223 10.3459 19.6332 10.5293L16.8726 11.5645C15.3439 12.1378 14.1377 13.3439 13.5645 14.8726L12.5293 17.6332C12.3459 18.1223 11.6541 18.1223 11.4707 17.6332L10.4355 14.8726C9.86223 13.3439 8.65604 12.1378 7.12735 11.5645L4.36681 10.5293C3.87773 10.3459 3.87773 9.6541 4.3668 9.4707L7.12737 8.43549C8.65605 7.86223 9.86223 6.65605 10.4355 5.12737L11.4707 2.3668Z" fill="currentColor"/> <path d="M5.26942 0.15979C5.34932 -0.0532639 5.65068 -0.0532634 5.73058 0.159791L6.07011 1.06522C6.21994 1.46478 6.53521 1.78005 6.93478 1.92989L7.84021 2.26942C8.05326 2.34932 8.05326 2.65068 7.84021 2.73058L6.93478 3.07011C6.53522 3.21994 6.21994 3.53522 6.07011 3.93478L5.73058 4.84021C5.65068 5.05326 5.34932 5.05326 5.26942 4.84021L4.92989 3.93478C4.78005 3.53521 4.46478 3.21994 4.06522 3.07011L3.15979 2.73058C2.94674 2.65068 2.94674 2.34932 3.15979 2.26942L4.06522 1.92989C4.46478 1.78005 4.78005 1.46478 4.92989 1.06522L5.26942 0.15979Z" fill="currentColor"/> <path d="M3.26942 14.1598C3.34932 13.9467 3.65068 13.9467 3.73058 14.1598L4.07011 15.0652C4.21994 15.4648 4.53521 15.7801 4.93478 15.9299L5.84021 16.2694C6.05326 16.3493 6.05326 16.6507 5.84021 16.7306L4.93478 17.0701C4.53522 17.2199 4.21994 17.5352 4.07011 17.9348L3.73058 18.8402C3.65068 19.0533 3.34932 19.0533 3.26942 18.8402L2.92989 17.9348C2.78005 17.5352 2.46478 17.2199 2.06522 17.0701L1.15979 16.7306C0.946737 16.6507 0.946736 16.3493 1.15979 16.2694L2.06522 15.9299C2.46478 15.7801 2.78005 15.4648 2.92989 15.0652L3.26942 14.1598Z" fill="currentColor"/> </svg> )); export default SparklesIcon;