Skip to content

Commit c32e474

Browse files
committed
[skip ci] repo-sync
1 parent 7c072f3 commit c32e474

File tree

88 files changed

+970
-282
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+970
-282
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules
2-
.DS_Store
2+
lib
3+
yarn-error.log

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "./src/"
1+
export * from "./src"

src/AWSLogoColor.tsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import React, { forwardRef } from "react"
2+
3+
import Icon from "./Icon"
4+
import { ReactComponent as AWSLogoColorSvg } from "./images/amazon-logo-color.svg"
5+
6+
export const AWSLogoColor = forwardRef<
7+
SVGSVGElement,
8+
{
9+
className?: string
10+
style?: React.CSSProperties
11+
}
12+
>(function InnerAWSLogoColor(props, ref) {
13+
return <Icon ref={ref} component={AWSLogoColorSvg} {...props} />
14+
})

src/AWSLogoMono.tsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import React, { forwardRef } from "react"
2+
3+
import Icon from "./Icon"
4+
import { ReactComponent as AWSLogoMonoSvg } from "./images/amazon-logo-mono.svg"
5+
6+
export const AWSLogoMono = forwardRef<
7+
SVGSVGElement,
8+
{
9+
className?: string
10+
style?: React.CSSProperties
11+
}
12+
>(function InnerAWSLogoMono(props, ref) {
13+
return <Icon ref={ref} component={AWSLogoMonoSvg} {...props} />
14+
})

src/ArgoCD.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ import React, { forwardRef } from "react"
33
import Icon from "./Icon"
44
import { ReactComponent as ArgoCDSvg } from "./images/argocd-icon.svg"
55

6-
export const ArgoCDIcon = forwardRef<SVGSVGElement>(function InnerArgoCDIcon(props, ref) {
6+
export const ArgoCDIcon = forwardRef<
7+
SVGSVGElement,
8+
{
9+
className?: string
10+
style?: React.CSSProperties
11+
}
12+
>(function InnerArgoCDIcon(props, ref) {
713
return <Icon ref={ref} component={ArgoCDSvg} {...props} />
814
})

src/ArrowBox.tsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import React, { forwardRef } from "react"
2+
3+
import Icon from "./Icon"
4+
import { ReactComponent as ArrowBoxSvg } from "./images/data-box.svg"
5+
6+
export const ArrowBoxIcon = forwardRef<
7+
SVGSVGElement,
8+
{
9+
className?: string
10+
style?: React.CSSProperties
11+
}
12+
>(function InnerArrowBoxIcon(props, ref) {
13+
return <Icon ref={ref} component={ArrowBoxSvg} {...props} />
14+
})

src/CPUOutlined.tsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import React, { forwardRef } from "react"
2+
3+
import Icon from "./Icon"
4+
import { ReactComponent as CPUSvg } from "./images/CPU.svg"
5+
6+
export const CPUOutlined = forwardRef<
7+
SVGSVGElement,
8+
{
9+
className?: string
10+
style?: React.CSSProperties
11+
}
12+
>(function InnerCPUOutlined(props, ref) {
13+
return <Icon ref={ref} component={CPUSvg} {...props} />
14+
})

src/Code.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import React, { forwardRef } from "react"
33
import Icon from "./Icon"
44
import { ReactComponent as SvgCodeIcon } from "./images/code.svg"
55

6-
export const CodeIcon = forwardRef<
6+
export const CodeOutlined = forwardRef<
77
SVGSVGElement,
88
{
99
className?: string

src/CollapseIcon.tsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import React, { forwardRef } from "react"
2+
3+
import Icon from "./Icon"
4+
import { ReactComponent as Collapse } from "./images/collapse.svg"
5+
6+
export const CollapseIcon = forwardRef<
7+
SVGSVGElement,
8+
{
9+
className?: string
10+
style?: React.CSSProperties
11+
}
12+
>(function InnerExpandIcon(props, ref) {
13+
return <Icon ref={ref} component={Collapse} {...props} />
14+
})

src/CubeOutlined.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import React, { forwardRef } from "react"
2+
3+
import Icon, { IconProps } from "./Icon"
4+
import { ReactComponent as CubeSvg } from "./images/Cube.svg"
5+
6+
export const CubeOutlined = forwardRef<SVGSVGElement, Omit<IconProps, "ref" | "component">>(
7+
function InnerCubeOutlined(props, ref) {
8+
return <Icon ref={ref} component={CubeSvg} {...props} />
9+
}
10+
)

0 commit comments

Comments
 (0)