sebikostudio-icons
Version:
A collection of icon components
15 lines (10 loc) • 2.22 kB
JavaScript
import React, { forwardRef } from 'react';
export const MagicWandIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "magic wand, magic, tricks, magician, spell"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M11.5 8.5L3.5 16.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M7.26942 2.15979C7.34932 1.94674 7.65068 1.94674 7.73058 2.15979L8.07011 3.06522C8.21994 3.46478 8.53522 3.78005 8.93478 3.92989L9.84021 4.26942C10.0533 4.34932 10.0533 4.65068 9.84021 4.73058L8.93478 5.07011C8.53522 5.21994 8.21994 5.53522 8.07011 5.93478L7.73058 6.84021C7.65068 7.05326 7.34932 7.05326 7.26942 6.84021L6.92989 5.93478C6.78005 5.53521 6.46478 5.21994 6.06522 5.07011L5.15979 4.73058C4.94674 4.65068 4.94674 4.34932 5.15979 4.26942L6.06522 3.92989C6.46478 3.78005 6.78005 3.46478 6.92989 3.06522L7.26942 2.15979Z" fill="currentColor"/>
<path d="M15.2694 2.15979C15.3493 1.94674 15.6507 1.94674 15.7306 2.15979L16.0701 3.06522C16.2199 3.46478 16.5352 3.78005 16.9348 3.92989L17.8402 4.26942C18.0533 4.34932 18.0533 4.65068 17.8402 4.73058L16.9348 5.07011C16.5352 5.21994 16.2199 5.53522 16.0701 5.93478L15.7306 6.84021C15.6507 7.05326 15.3493 7.05326 15.2694 6.84021L14.9299 5.93478C14.7801 5.53521 14.4648 5.21994 14.0652 5.07011L13.1598 4.73058C12.9467 4.65068 12.9467 4.34932 13.1598 4.26942L14.0652 3.92989C14.4648 3.78005 14.7801 3.46478 14.9299 3.06522L15.2694 2.15979Z" fill="currentColor"/>
<path d="M15.2694 10.1598C15.3493 9.94674 15.6507 9.94674 15.7306 10.1598L16.0701 11.0652C16.2199 11.4648 16.5352 11.7801 16.9348 11.9299L17.8402 12.2694C18.0533 12.3493 18.0533 12.6507 17.8402 12.7306L16.9348 13.0701C16.5352 13.2199 16.2199 13.5352 16.0701 13.9348L15.7306 14.8402C15.6507 15.0533 15.3493 15.0533 15.2694 14.8402L14.9299 13.9348C14.7801 13.5352 14.4648 13.2199 14.0652 13.0701L13.1598 12.7306C12.9467 12.6507 12.9467 12.3493 13.1598 12.2694L14.0652 11.9299C14.4648 11.7801 14.7801 11.4648 14.9299 11.0652L15.2694 10.1598Z" fill="currentColor"/>
</svg>
));
export default MagicWandIcon;