-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7899982
commit d5a6b3c
Showing
3 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters