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(Icons): New icons Sidebar Open & Close
- Loading branch information
1 parent
6002281
commit 6e1f879
Showing
9 changed files
with
104 additions
and
3 deletions.
There are no files selected for viewing
File renamed without changes
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 FullscreenExitIcon = 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,3c1.656,0 3,1.344 3,3l0,6c0,1.656 -1.344,3 -3,3l-10,0c-1.656,0 -3,-1.344 -3,-3l0,-6c0,-1.656 1.344,-3 3,-3l10,0Zm-0.376,2l-9.248,0c-0.76,0 -1.376,0.617 -1.376,1.376l0,5.248c0,0.76 0.616,1.376 1.376,1.376l9.248,0c0.76,0 1.376,-0.616 1.376,-1.376l0,-5.248c0,-0.759 -0.616,-1.376 -1.376,-1.376Z M10,8.5c0,0 0,-2 0,-2c0,-0.276 0.224,-0.5 0.5,-0.5c0.276,0 0.5,0.224 0.5,0.5l0,1.5l2.5,0c0.276,0 0.5,0.224 0.5,0.5c0,0.276 -0.224,0.5 -0.5,0.5l-3,0c-0.138,0 -0.263,-0.056 -0.353,-0.146l0,-0.001c0,0 -0.001,0 -0.001,0c-0.09,-0.09 -0.146,-0.215 -0.146,-0.353l0,0Z M8,9.5c0,0 0,2 0,2c0,0.276 -0.224,0.5 -0.5,0.5c-0.276,0 -0.5,-0.224 -0.5,-0.5l0,-1.5l-2.5,0c-0.276,0 -0.5,-0.224 -0.5,-0.5c0,-0.276 0.224,-0.5 0.5,-0.5l3,0c0.138,0 0.263,0.056 0.353,0.146l0,0.001c0,0 0.001,0 0.001,0c0.09,0.09 0.146,0.215 0.146,0.353l0,0Z" /> | ||
</Svg> | ||
); | ||
}); | ||
|
||
FullscreenExitIcon.displayName = 'FullscreenExitIcon'; | ||
|
||
FullscreenExitIcon.defaultProps = { | ||
size: 18, | ||
color: 'currentcolor', | ||
}; | ||
|
||
export default FullscreenExitIcon; |
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 SidebarCloseIcon = 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,3c1.656,0 3,1.344 3,3l0,6c0,1.656 -1.344,3 -3,3l-10,0c-1.656,0 -3,-1.344 -3,-3l0,-6c0,-1.656 1.344,-3 3,-3l10,0Zm-0.376,2l-9.248,0c-0.76,0 -1.376,0.617 -1.376,1.376l0,5.248c0,0.76 0.616,1.376 1.376,1.376l9.248,0c0.76,0 1.376,-0.616 1.376,-1.376l0,-5.248c0,-0.759 -0.616,-1.376 -1.376,-1.376Z M10,9c0,-0.276 -0.224,-0.5 -0.5,-0.5l-4,0c-0.276,0 -0.5,0.224 -0.5,0.5c0,0.276 0.224,0.5 0.5,0.5l4,0c0.276,0 0.5,-0.224 0.5,-0.5Z M11,9l-2,-2l0,4l2,-2Z M14,6.997c0,-0.55 -0.447,-0.997 -0.997,-0.997l-1.003,0l0,6l1,0c0.552,0 1,-0.448 1,-1l0,-4.003Z" /> | ||
</Svg> | ||
); | ||
}); | ||
|
||
SidebarCloseIcon.displayName = 'SidebarCloseIcon'; | ||
|
||
SidebarCloseIcon.defaultProps = { | ||
size: 18, | ||
color: 'currentcolor', | ||
}; | ||
|
||
export default SidebarCloseIcon; |
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 SidebarOpenIcon = 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,3c1.656,0 3,1.344 3,3l0,6c0,1.656 -1.344,3 -3,3l-10,0c-1.656,0 -3,-1.344 -3,-3l0,-6c0,-1.656 1.344,-3 3,-3l10,0Zm-0.376,2l-9.248,0c-0.76,0 -1.376,0.617 -1.376,1.376l0,5.248c0,0.76 0.616,1.376 1.376,1.376l9.248,0c0.76,0 1.376,-0.616 1.376,-1.376l0,-5.248c0,-0.759 -0.616,-1.376 -1.376,-1.376Z M14,6.997c0,-0.55 -0.447,-0.997 -0.997,-0.997l-1.003,0l0,6l1,0c0.552,0 1,-0.448 1,-1l0,-4.003Z M6,9c0,0.276 0.224,0.5 0.5,0.5l4,0c0.276,0 0.5,-0.224 0.5,-0.5c0,-0.276 -0.224,-0.5 -0.5,-0.5l-4,0c-0.276,0 -0.5,0.224 -0.5,0.5Z M5,9l2,2l0,-4l-2,2Z" /> | ||
</Svg> | ||
); | ||
}); | ||
|
||
SidebarOpenIcon.displayName = 'SidebarOpenIcon'; | ||
|
||
SidebarOpenIcon.defaultProps = { | ||
size: 18, | ||
color: 'currentcolor', | ||
}; | ||
|
||
export default SidebarOpenIcon; |
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