This repository has been archived by the owner on Jun 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Added new icons NavUp, NavDown, Dot
- Loading branch information
1 parent
f747e26
commit 66b7b7c
Showing
9 changed files
with
105 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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,31 @@ | ||
import React, {forwardRef} from 'react'; | ||
|
||
import Svg from './BaseSvg'; | ||
|
||
const DotIcon = forwardRef((props, ref) => { | ||
const {size, color, ...otherProps} = props; | ||
|
||
return ( | ||
<Svg | ||
{...otherProps} | ||
ref={ref} | ||
viewBox="0 0 18 18" | ||
width={size} | ||
height={size} | ||
fill={color} | ||
fillRule="evenodd" | ||
clipRule="evenodd" | ||
> | ||
<path d="M 9 4 A 5 5 0 0 1 9 14 A 5 5 0 0 1 9 4" /> | ||
</Svg> | ||
); | ||
}); | ||
|
||
DotIcon.displayName = 'DotIcon'; | ||
|
||
DotIcon.defaultProps = { | ||
size: 18, | ||
color: 'currentcolor', | ||
}; | ||
|
||
export default DotIcon; |
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,31 @@ | ||
import React, {forwardRef} from 'react'; | ||
|
||
import Svg from './BaseSvg'; | ||
|
||
const NavDownIcon = forwardRef((props, ref) => { | ||
const {size, color, ...otherProps} = props; | ||
|
||
return ( | ||
<Svg | ||
{...otherProps} | ||
ref={ref} | ||
viewBox="0 0 18 18" | ||
width={size} | ||
height={size} | ||
fill={color} | ||
fillRule="evenodd" | ||
clipRule="evenodd" | ||
> | ||
<path d="M14,5l-5,9l-5,-9l10,0Z" /> | ||
</Svg> | ||
); | ||
}); | ||
|
||
NavDownIcon.displayName = 'NavDownIcon'; | ||
|
||
NavDownIcon.defaultProps = { | ||
size: 18, | ||
color: 'currentcolor', | ||
}; | ||
|
||
export default NavDownIcon; |
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,31 @@ | ||
import React, {forwardRef} from 'react'; | ||
|
||
import Svg from './BaseSvg'; | ||
|
||
const NavUpIcon = forwardRef((props, ref) => { | ||
const {size, color, ...otherProps} = props; | ||
|
||
return ( | ||
<Svg | ||
{...otherProps} | ||
ref={ref} | ||
viewBox="0 0 18 18" | ||
width={size} | ||
height={size} | ||
fill={color} | ||
fillRule="evenodd" | ||
clipRule="evenodd" | ||
> | ||
<path d="M4,13l5,-9l5,9l-10,0Z" /> | ||
</Svg> | ||
); | ||
}); | ||
|
||
NavUpIcon.displayName = 'NavUpIcon'; | ||
|
||
NavUpIcon.defaultProps = { | ||
size: 18, | ||
color: 'currentcolor', | ||
}; | ||
|
||
export default NavUpIcon; |
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
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