Skip to content

Commit

Permalink
chore(icons): Rubber16 and Rubber24 icons added
Browse files Browse the repository at this point in the history
  • Loading branch information
albaranau committed May 8, 2024
1 parent 107ae88 commit 2c70507
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
14 changes: 14 additions & 0 deletions packages/default-icons/src/figma-icons/Rubber16.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { SVGProps, memo } from 'react';
const Rubber16 = (props: SVGProps<SVGSVGElement>) => (
<svg width={16} height={16} viewBox="0 0 16 16" fill="none" {...props}>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M2.24179 8.1663L7.9081 2.5C8.68914 1.71895 9.95547 1.71895 10.7365 2.5L13 4.7635C13.7811 5.54454 13.7811 6.81087 13 7.59192L7.75056 12.8414H14V13.8414H6.02235C5.47679 13.8693 4.92198 13.6749 4.50529 13.2582L2.24179 10.9947C1.46074 10.2137 1.46074 8.94735 2.24179 8.1663ZM2.9489 8.87341C2.55837 9.26394 2.55837 9.8971 2.9489 10.2876L5.21239 12.5511C5.60292 12.9416 6.23608 12.9416 6.62661 12.5511L7.95324 11.2245L4.27553 7.54678L2.9489 8.87341ZM12.2929 6.88482L8.66034 10.5174L4.98264 6.83967L8.6152 3.20711C9.00573 2.81658 9.63889 2.81658 10.0294 3.20711L12.2929 5.4706C12.6834 5.86113 12.6834 6.49429 12.2929 6.88482Z"
fill="currentColor"
/>
</svg>
);
Rubber16.displayName = 'Rubber16';
const Memo = memo(Rubber16);
export default Memo;
14 changes: 14 additions & 0 deletions packages/default-icons/src/figma-icons/Rubber24.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { SVGProps, memo } from 'react';
const Rubber24 = (props: SVGProps<SVGSVGElement>) => (
<svg width={24} height={24} viewBox="0 0 24 24" fill="none" {...props}>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M2.40053 13.5028L13.035 2.86833C13.9332 1.97013 15.3895 1.97013 16.2877 2.86833L21.1317 7.71234C22.0299 8.61054 22.0299 10.0668 21.1317 10.965L11.1245 20.9722L21 20.9722V22.2722H8.93542C8.89241 22.2734 8.84936 22.2734 8.80634 22.2722H8.73169V22.2689C8.19029 22.2363 7.65822 22.0132 7.24454 21.5995L2.40053 16.7555C1.50232 15.8573 1.50232 14.401 2.40053 13.5028ZM8.9134 20.9722H8.82836C8.58679 20.962 8.34822 20.8647 8.16378 20.6802L3.31977 15.8362C2.92924 15.4457 2.92924 14.8125 3.31977 14.422L6.21543 11.5264L12.4736 17.7846L9.57799 20.6802C9.39354 20.8647 9.15497 20.962 8.9134 20.9722ZM20.2124 10.0458L13.3929 16.8653L7.13467 10.6071L13.9542 3.78757C14.3447 3.39705 14.9779 3.39705 15.3684 3.78757L20.2124 8.63158C20.603 9.0221 20.603 9.65527 20.2124 10.0458Z"
fill="currentColor"
/>
</svg>
);
Rubber24.displayName = 'Rubber24';
const Memo = memo(Rubber24);
export default Memo;
2 changes: 2 additions & 0 deletions packages/default-icons/src/figma-icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,3 +177,5 @@ export { default as SmartCity24 } from './SmartCity24';
export { default as Car16 } from './Car16';
export { default as UploadAnalysis16 } from './UploadAnalysis16';
export { default as Reference16 } from './Reference16';
export { default as Rubber16 } from './Rubber16';
export { default as Rubber24 } from './Rubber24';

0 comments on commit 2c70507

Please sign in to comment.