Skip to content

Commit a8cd9ce

Browse files
committed
feat(pkg.icons): add ActivityLine icon
1 parent 6707e88 commit a8cd9ce

3 files changed

Lines changed: 10 additions & 0 deletions

File tree

packages/pkg.icons/config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
export const icons = [
22
'Account',
33
'Activity',
4+
'ActivityLine',
45
'Add',
56
'Announce',
67
'Arrow',
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 ActivityLine = ({ ...props }: IconProps) => (
4+
<Svg {...props}>
5+
<path d="M22 12H18L15 21L9 3L6 12H2" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
6+
</Svg>
7+
);

packages/pkg.icons/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { Account } from './icons/Account';
22
import { Activity } from './icons/Activity';
3+
import {ActivityLine} from './icons/ActivityLine'
34
import { Add } from './icons/Add';
45
import { Announce } from './icons/Announce';
56
import { Arrow } from './icons/Arrow';
@@ -180,6 +181,7 @@ import { Transform } from './icons/Transform';
180181
export {
181182
Account,
182183
Activity,
184+
ActivityLine,
183185
Add,
184186
Announce,
185187
Arrow,

0 commit comments

Comments
 (0)