Skip to content

Commit 7c072f3

Browse files
initial commit
0 parents  commit 7c072f3

86 files changed

Lines changed: 1538 additions & 0 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
.DS_Store

index.ts

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

package.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"name": "@loft-enterprise/icons",
3+
"version": "1.0.0",
4+
"main": "index.ts",
5+
"private": true,
6+
"dependencies": {
7+
"@ant-design/icons": "5.3.7"
8+
}
9+
}

src/ArgoCD.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import React, { forwardRef } from "react"
2+
3+
import Icon from "./Icon"
4+
import { ReactComponent as ArgoCDSvg } from "./images/argocd-icon.svg"
5+
6+
export const ArgoCDIcon = forwardRef<SVGSVGElement>(function InnerArgoCDIcon(props, ref) {
7+
return <Icon ref={ref} component={ArgoCDSvg} {...props} />
8+
})

src/BackupIcon.tsx

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

src/CheckCircleOutlinedFilled.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 from "./Icon"
4+
import { ReactComponent as SvgCheckCircleOutlineFilled } from "./images/check-circle-outlined-filled.svg"
5+
6+
export const CheckCircleOutlineFilledIcon = forwardRef<SVGSVGElement>(
7+
function InnerCheckCircleOutlineFilledIcon(props, ref) {
8+
return <Icon ref={ref} component={SvgCheckCircleOutlineFilled} {...props} />
9+
}
10+
)

src/CirclePendingOutlined.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 SvgCirclePendingOutlinedIcon } from "./images/circle-outlined-pending.svg"
5+
6+
export const CirclePendingOutlinedIcon = forwardRef<
7+
SVGSVGElement,
8+
{
9+
className?: string
10+
style?: React.CSSProperties
11+
}
12+
>(function InnerCirclePendingOutlinedIcon(props, ref) {
13+
return <Icon ref={ref} component={SvgCirclePendingOutlinedIcon} {...props} />
14+
})

src/Clipboard.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 SvgClipboardIcon } from "./images/clipboard.svg"
5+
6+
export const ClipboardIcon = forwardRef<
7+
SVGSVGElement,
8+
{
9+
className?: string
10+
style?: React.CSSProperties
11+
}
12+
>(function InnerClipboardIcon(props, ref) {
13+
return <Icon ref={ref} component={SvgClipboardIcon} {...props} />
14+
})

src/Code.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 SvgCodeIcon } from "./images/code.svg"
5+
6+
export const CodeIcon = forwardRef<
7+
SVGSVGElement,
8+
{
9+
className?: string
10+
style?: React.CSSProperties
11+
}
12+
>(function InnerCodeIcon(props, ref) {
13+
return <Icon ref={ref} component={SvgCodeIcon} {...props} />
14+
})

src/DevPod.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 DevPodSvg } from "./images/devpod-logo.svg"
5+
6+
export const DevPodIcon = forwardRef<
7+
SVGSVGElement,
8+
{
9+
className?: string
10+
style?: React.CSSProperties
11+
}
12+
>(function InnerDevPodIcon(props, ref) {
13+
return <Icon ref={ref} component={DevPodSvg} {...props} />
14+
})

0 commit comments

Comments
 (0)