Skip to content

Commit

Permalink
feat(icons): new icon for lists
Browse files Browse the repository at this point in the history
  • Loading branch information
maximeperrault authored and maximeperraultdev committed Aug 27, 2024
1 parent 7899982 commit d5a6b3c
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/assets/icons/ListLines.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions src/icons/ListLines.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import { IconBox } from '../elements/IconBox'

import type { IconProps } from '../types/definitions'

export function ListLines({ color, size, title, ...nativeProps }: IconProps) {
return (
<IconBox $color={color} $size={size} title={title}>
<svg height="20" viewBox="0 0 20 20" width="20" {...nativeProps}>
<g transform="translate(160 -41)">
<rect fill="currentColor" height="12" transform="translate(-142 45) rotate(90)" width="2" />
<rect fill="currentColor" height="12" transform="translate(-142 50) rotate(90)" width="2" />
<rect fill="currentColor" height="12" transform="translate(-142 55) rotate(90)" width="2" />
<circle cx="1.5" cy="1.5" fill="currentColor" r="1.5" transform="translate(-158 44.5)" />
<circle cx="1.5" cy="1.5" fill="currentColor" r="1.5" transform="translate(-158 49.5)" />
<circle cx="1.5" cy="1.5" fill="currentColor" r="1.5" transform="translate(-158 54.5)" />
</g>
<rect fill="none" height="20" width="20" />
</svg>
</IconBox>
)
}
2 changes: 2 additions & 0 deletions src/icons/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ import { Invalid } from './Invalid'
import { Landmark } from './Landmark'
import { Link } from './Link'
import { List } from './List'
import { ListLines } from './ListLines'
import { Logout } from './Logout'
import { MapLayers } from './MapLayers'
import { MeasureAngle } from './MeasureAngle'
Expand Down Expand Up @@ -138,6 +139,7 @@ export {
Landmark,
Link,
List,
ListLines,
Logout,
MapLayers,
MeasureAngle,
Expand Down

0 comments on commit d5a6b3c

Please sign in to comment.