Skip to content

Commit ecb1be3

Browse files
feat(pkg.icons): add ArrowUpRight icon
1 parent 7be6215 commit ecb1be3

5 files changed

Lines changed: 12 additions & 2 deletions

File tree

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/pkg.icons/config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,4 +160,5 @@ export const icons = [
160160
'WhatsAppFilled',
161161
'WhiteBoard',
162162
'Window',
163+
'ArrowUpRight',
163164
] as const;
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { Svg, IconProps } from '../Svg';
2+
3+
export const ArrowUpRight = ({ ...props }: IconProps) => (
4+
<Svg {...props}>
5+
<path fillRule="evenodd" clipRule="evenodd" d="M8 7C8 6.44772 8.44772 6 9 6H17C17.5523 6 18 6.44772 18 7V15C18 15.5523 17.5523 16 17 16C16.4477 16 16 15.5523 16 15V9.41421L7.70711 17.7071C7.31658 18.0976 6.68342 18.0976 6.29289 17.7071C5.90237 17.3166 5.90237 16.6834 6.29289 16.2929L14.5858 8H9C8.44772 8 8 7.55228 8 7Z" />
6+
</Svg>
7+
);

packages/pkg.icons/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ import { Video } from './icons/Video';
159159
import { WhatsAppFilled } from './icons/WhatsAppFilled';
160160
import { WhiteBoard } from './icons/WhiteBoard';
161161
import { Window } from './icons/Window';
162+
import { ArrowUpRight } from './icons/ArrowUpRight';
162163

163164
import { icons } from './config';
164165

@@ -324,6 +325,7 @@ export {
324325
WhatsAppFilled,
325326
WhiteBoard,
326327
Window,
328+
ArrowUpRight,
327329
icons,
328330
};
329331

packages/pkg.icons/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@xipkg/icons",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"main": "./dist/index.mjs",
55
"module": "./dist/index.mjs",
66
"types": "./dist/index.d.mts",

0 commit comments

Comments
 (0)