-
Notifications
You must be signed in to change notification settings - Fork 73
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
37 changed files
with
573 additions
and
126 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { ReactComponent as logo } from './BatchSession.svg'; | ||
import Icon from '@ant-design/icons'; | ||
import { CustomIconComponentProps } from '@ant-design/icons/lib/components/Icon'; | ||
|
||
interface BatchSessionIconProps | ||
extends Omit<CustomIconComponentProps, 'width' | 'height' | 'fill'> {} | ||
|
||
const BatchSessionIcon: React.FC<BatchSessionIconProps> = (props) => { | ||
return <Icon component={logo} {...props} />; | ||
}; | ||
|
||
export default BatchSessionIcon; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { ReactComponent as logo } from './Endpoints.svg'; | ||
import Icon from '@ant-design/icons'; | ||
import { CustomIconComponentProps } from '@ant-design/icons/lib/components/Icon'; | ||
|
||
interface EndpointsIconProps | ||
extends Omit<CustomIconComponentProps, 'width' | 'height' | 'fill'> {} | ||
|
||
const EndpointsIcon: React.FC<EndpointsIconProps> = (props) => { | ||
return <Icon component={logo} {...props} />; | ||
}; | ||
|
||
export default EndpointsIcon; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { ReactComponent as logo } from './ExampleStart.svg'; | ||
import Icon from '@ant-design/icons'; | ||
import { CustomIconComponentProps } from '@ant-design/icons/lib/components/Icon'; | ||
|
||
interface ExampleStartIconProps | ||
extends Omit<CustomIconComponentProps, 'width' | 'height' | 'fill'> {} | ||
|
||
const ExampleStartIcon: React.FC<ExampleStartIconProps> = (props) => { | ||
return <Icon component={logo} {...props} />; | ||
}; | ||
|
||
export default ExampleStartIcon; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { ReactComponent as logo } from './Examples.svg'; | ||
import Icon from '@ant-design/icons'; | ||
import { CustomIconComponentProps } from '@ant-design/icons/lib/components/Icon'; | ||
|
||
interface ExamplesIconProps | ||
extends Omit<CustomIconComponentProps, 'width' | 'height' | 'fill'> {} | ||
|
||
const ExamplesIcon: React.FC<ExamplesIconProps> = (props) => { | ||
return <Icon component={logo} {...props} />; | ||
}; | ||
|
||
export default ExamplesIcon; |
Oops, something went wrong.