File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11export const icons = [
22 'Account' ,
33 'Activity' ,
4+ 'ActivityLine' ,
45 'Add' ,
56 'Announce' ,
67 'Arrow' ,
Original file line number Diff line number Diff line change 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+ ) ;
Original file line number Diff line number Diff line change 11import { Account } from './icons/Account' ;
22import { Activity } from './icons/Activity' ;
3+ import { ActivityLine } from './icons/ActivityLine'
34import { Add } from './icons/Add' ;
45import { Announce } from './icons/Announce' ;
56import { Arrow } from './icons/Arrow' ;
@@ -180,6 +181,7 @@ import { Transform } from './icons/Transform';
180181export {
181182 Account ,
182183 Activity ,
184+ ActivityLine ,
183185 Add ,
184186 Announce ,
185187 Arrow ,
You can’t perform that action at this time.
0 commit comments