Skip to content

Commit

Permalink
feat: sync icons
Browse files Browse the repository at this point in the history
  • Loading branch information
amje authored Sep 19, 2023
1 parent e49bcba commit c704588
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 0 deletions.
20 changes: 20 additions & 0 deletions lib/CopyXmark.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import * as React from 'react';
import {SVGProps} from 'react';
const CopyXmark = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width={16}
height={16}
fill="none"
viewBox="0 0 16 16"
{...props}
>
<path
fill="currentColor"
fillRule="evenodd"
d="M9.5 12c0 .414-.168.79-.44 1.06A1.49 1.49 0 0 1 8 13.5H4a1.49 1.49 0 0 1-1.06-.44A1.496 1.496 0 0 1 2.5 12V8c0-.414.168-.79.44-1.06A1.49 1.49 0 0 1 4 6.5h4c.414 0 .79.168 1.06.44.272.27.44.646.44 1.06v4Zm-1.47-1.03s.001 0 0 0L7.06 10l.97-.97a.75.75 0 0 0-1.06-1.06L6 8.94l-.97-.97a.75.75 0 0 0-1.06 1.06l.97.97-.97.97a.75.75 0 0 0 1.06 1.06c0 .001 0 0 0 0l.97-.97.97.97a.75.75 0 0 0 1.06-1.06ZM6.5 5H8a3 3 0 0 1 3 3v1.5h1A1.498 1.498 0 0 0 13.5 8V4A1.5 1.5 0 0 0 12 2.5H8A1.5 1.5 0 0 0 6.5 4v1ZM5 4a3 3 0 0 1 3-3h4a3 3 0 0 1 3 3v4a3 3 0 0 1-3 3h-1v1a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3V8a3 3 0 0 1 3-3h1V4Z"
clipRule="evenodd"
/>
</svg>
);
export default CopyXmark;
1 change: 1 addition & 0 deletions lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ export {default as CopyMinus} from './CopyMinus';
export {default as CopyPicture} from './CopyPicture';
export {default as CopyPlus} from './CopyPlus';
export {default as CopyTransparent} from './CopyTransparent';
export {default as CopyXmark} from './CopyXmark';
export {default as Cpu} from './Cpu';
export {default as Cpus} from './Cpus';
export {default as CreditCard} from './CreditCard';
Expand Down
7 changes: 7 additions & 0 deletions metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -1866,6 +1866,13 @@
"componentName": "CopyTransparent",
"keywords": []
},
{
"name": "copy-xmark",
"style": "regular",
"svgName": "copy-xmark",
"componentName": "CopyXmark",
"keywords": []
},
{
"name": "cpu",
"style": "regular",
Expand Down
1 change: 1 addition & 0 deletions svgs/copy-xmark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit c704588

Please sign in to comment.