Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

Add wand icon #179

Merged
merged 1 commit into from
Sep 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ export { VerticalDots } from './ui/VerticalDots';
export { Video } from './ui/Video';
export { VideoStack } from './ui/VideoStack';
export { VideoStackFilled } from './ui/VideoStackFilled';
export { Wand } from './ui/Wand';

//
//
Expand Down
18 changes: 18 additions & 0 deletions src/icons/ui/Wand.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import React, { forwardRef, Ref, SVGAttributes } from 'react';

import { IrisIcon } from '../icons.types';

export const Wand: IrisIcon = forwardRef(
(props: SVGAttributes<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
<svg viewBox="0 0 54 54" ref={ref} {...props}>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M29.7936 4.33328C29.7936 6.54242 28.0027 8.33328 25.7936 8.33328C23.5845 8.33328 21.7936 6.54242 21.7936 4.33328C21.7936 2.12414 23.5845 0.333282 25.7936 0.333282C28.0027 0.333282 29.7936 2.12414 29.7936 4.33328ZM8.46033 4.24994C8.46033 3.55958 9.01998 2.99994 9.71033 2.99994H12.5437C13.234 2.99994 13.7937 3.55958 13.7937 4.24994V8.33325H17.8769C18.5673 8.33325 19.1269 8.89289 19.1269 9.58325V12.4166C19.1269 13.1069 18.5673 13.6666 17.8769 13.6666H13.7937V17.7499C13.7937 18.4403 13.234 18.9999 12.5437 18.9999H9.71033C9.01998 18.9999 8.46033 18.4403 8.46033 17.7499V13.6666H4.37692C3.68657 13.6666 3.12692 13.1069 3.12692 12.4166V9.58325C3.12692 8.89289 3.68657 8.33325 4.37692 8.33325H8.46033V4.24994ZM32.7635 9.99015L2.91712 39.8365C-0.207074 42.9607 -0.207073 48.026 2.91712 51.1502C6.04131 54.2744 11.1066 54.2744 14.2308 51.1502L44.0772 21.3039C47.2014 18.1797 47.2014 13.1143 44.0772 9.99015C40.953 6.86596 35.8877 6.86596 32.7635 9.99015ZM36.5348 21.3039L32.7635 17.5327L36.5348 13.7614C37.5762 12.72 39.2646 12.72 40.306 13.7614C41.3474 14.8028 41.3474 16.4913 40.306 17.5327L36.5348 21.3039ZM28.9923 21.3038L6.68836 43.6077C5.64696 44.6491 5.64696 46.3376 6.68836 47.379C7.72975 48.4204 9.41819 48.4204 10.4596 47.379L32.7635 25.0751L28.9923 21.3038ZM39.0436 35C38.3533 35 37.7936 35.5596 37.7936 36.25V39.0833C37.7936 39.7737 38.3533 40.3333 39.0436 40.3333H43.1269V44.4166C43.1269 45.1069 43.6866 45.6666 44.3769 45.6666H47.2103C47.9006 45.6666 48.4603 45.1069 48.4603 44.4166V40.3333H52.5436C53.234 40.3333 53.7936 39.7737 53.7936 39.0833V36.25C53.7936 35.5596 53.234 35 52.5436 35H48.4603V30.9166C48.4603 30.2262 47.9006 29.6666 47.2103 29.6666H44.3769C43.6866 29.6666 43.1269 30.2262 43.1269 30.9166V35H39.0436Z"
fill="currentcolor"
/>
</svg>
)
);

Wand.tags = ['magic', 'autogenerate', 'enhancement', 'wand'];
1 change: 1 addition & 0 deletions src/icons/ui/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,3 +126,4 @@ export { VerticalDots } from './VerticalDots';
export { Video } from './Video';
export { VideoStack } from './VideoStack';
export { VideoStackFilled } from './VideoStackFilled';
export { Wand } from './Wand';