-
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
Showing
15 changed files
with
282 additions
and
164 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,2 +1,3 @@ | ||
node_modules | ||
.DS_Store | ||
lib | ||
yarn-error.log |
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,14 @@ | ||
import React, { forwardRef } from "react" | ||
|
||
import Icon from "./Icon" | ||
import { ReactComponent as ArrowBoxSvg } from "./images/data-box.svg" | ||
|
||
export const ArrowBoxIcon = forwardRef< | ||
SVGSVGElement, | ||
{ | ||
className?: string | ||
style?: React.CSSProperties | ||
} | ||
>(function InnerArrowBoxIcon(props, ref) { | ||
return <Icon ref={ref} component={ArrowBoxSvg} {...props} /> | ||
}) |
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,8 @@ | ||
import React, { forwardRef } from "react" | ||
|
||
import Icon from "./Icon" | ||
import { ReactComponent as Backup } from "./images/collapse-custom.svg" | ||
|
||
export const CollapseIcon = forwardRef<SVGSVGElement>(function InnerArgoCDIcon(props, ref) { | ||
return <Icon ref={ref} component={Backup} {...props} /> | ||
}) |
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,14 @@ | ||
import React, { forwardRef } from "react" | ||
|
||
import Icon from "./Icon" | ||
import { ReactComponent as DragArea } from "./images/drag-area.svg" | ||
|
||
export const DragAreaIcon = forwardRef< | ||
SVGSVGElement, | ||
{ | ||
className?: string | ||
style?: React.CSSProperties | ||
} | ||
>(function InnerDragAreaIcon(props, ref) { | ||
return <Icon ref={ref} component={DragArea} {...props} /> | ||
}) |
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,11 @@ | ||
import React, { forwardRef } from "react" | ||
|
||
import Icon, { IconProps } from "./Icon" | ||
import { ReactComponent as KubernetesSvg } from "./images/Kubernetes.svg" | ||
|
||
export const KubernetesOutlinedIcon = forwardRef< | ||
SVGSVGElement, | ||
Omit<IconProps, "component" | "ref"> | ||
>(function InnerKubernetesIcon(props, ref) { | ||
return <Icon ref={ref} component={KubernetesSvg} {...props} /> | ||
}) |
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,14 @@ | ||
import React, { forwardRef } from "react" | ||
|
||
import Icon from "./Icon" | ||
import { ReactComponent as Expand } from "./images/regex.svg" | ||
|
||
export const RegexIcon = forwardRef< | ||
SVGSVGElement, | ||
{ | ||
className?: string | ||
style?: React.CSSProperties | ||
} | ||
>(function InnerRegexIcon(props, ref) { | ||
return <Icon ref={ref} component={Expand} {...props} /> | ||
}) |
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
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.
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.
Oops, something went wrong.