generated from layer5io/layer5-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #765 from amitamrutiya/cloud-theme
Export empty state card image
- Loading branch information
Showing
10 changed files
with
128 additions
and
21 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
import CatalogFilterSidebar from './CatalogFilterSidebar'; | ||
import CatalogFilterSidebar, { FilterList } from './CatalogFilterSidebar'; | ||
|
||
export { CatalogFilterSidebar }; | ||
export type { FilterList }; |
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
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
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,44 @@ | ||
import React from 'react'; | ||
|
||
interface CollapsAllIconProps { | ||
height?: string; | ||
width?: string; | ||
fill?: string; | ||
strokeWidth?: string; | ||
style?: React.CSSProperties; | ||
} | ||
|
||
const CollapsAllIcon: React.FC<CollapsAllIconProps> = ({ | ||
height = '24', | ||
width = '24', | ||
fill = 'none', | ||
strokeWidth = '2', | ||
style | ||
}) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
viewBox="0 0 24 24" | ||
height={height} | ||
width={width} | ||
style={style} | ||
> | ||
<path | ||
d="M17 16l-5-5-5 5" | ||
fill={fill} | ||
stroke="currentColor" | ||
strokeWidth={strokeWidth} | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
<path | ||
d="M17 10l-5-5-5 5" | ||
fill={fill} | ||
stroke="currentColor" | ||
strokeWidth={strokeWidth} | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
</svg> | ||
); | ||
|
||
export default CollapsAllIcon; |
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 @@ | ||
export { default as CollapseAllIcon } from './CollapseAllIcon'; |
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,44 @@ | ||
import React from 'react'; | ||
|
||
interface ExpandAllIconProps { | ||
height?: string; | ||
width?: string; | ||
fill?: string; | ||
strokeWidth?: string; | ||
style?: React.CSSProperties; | ||
} | ||
|
||
const ExpandAllIcon: React.FC<ExpandAllIconProps> = ({ | ||
height = '24', | ||
width = '24', | ||
fill = 'none', | ||
strokeWidth = '2', | ||
style | ||
}) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
viewBox="0 0 24 24" | ||
height={height} | ||
width={width} | ||
style={style} | ||
> | ||
<path | ||
d="M7 8l5 5 5-5" | ||
fill={fill} | ||
stroke="currentColor" | ||
strokeWidth={strokeWidth} | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
<path | ||
d="M7 14l5 5 5-5" | ||
fill={fill} | ||
stroke="currentColor" | ||
strokeWidth={strokeWidth} | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
</svg> | ||
); | ||
|
||
export default ExpandAllIcon; |
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 @@ | ||
export { default as ExpandAllIcon } from './ExpandAllIcon'; |
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