Added data tree icons
This commit is contained in:
parent
f3839b278f
commit
57f352f50a
6
src/components/Icons/JsonArrayIcon.jsx
Normal file
6
src/components/Icons/JsonArrayIcon.jsx
Normal file
@ -0,0 +1,6 @@
|
||||
import Icon from '@ant-design/icons'
|
||||
import CustomIconSvg from '../../../assets/icons/jsonarrayicon.svg?react'
|
||||
|
||||
const JsonArrayIcon = (props) => <Icon component={CustomIconSvg} {...props} />
|
||||
|
||||
export default JsonArrayIcon
|
||||
6
src/components/Icons/JsonBoolIcon.jsx
Normal file
6
src/components/Icons/JsonBoolIcon.jsx
Normal file
@ -0,0 +1,6 @@
|
||||
import Icon from '@ant-design/icons'
|
||||
import CustomIconSvg from '../../../assets/icons/jsonboolicon.svg?react'
|
||||
|
||||
const JsonBoolIcon = (props) => <Icon component={CustomIconSvg} {...props} />
|
||||
|
||||
export default JsonBoolIcon
|
||||
6
src/components/Icons/JsonNumberIcon.jsx
Normal file
6
src/components/Icons/JsonNumberIcon.jsx
Normal file
@ -0,0 +1,6 @@
|
||||
import Icon from '@ant-design/icons'
|
||||
import CustomIconSvg from '../../../assets/icons/jsonnumbericon.svg?react'
|
||||
|
||||
const JsonNumberIcon = (props) => <Icon component={CustomIconSvg} {...props} />
|
||||
|
||||
export default JsonNumberIcon
|
||||
6
src/components/Icons/JsonObjectIcon.jsx
Normal file
6
src/components/Icons/JsonObjectIcon.jsx
Normal file
@ -0,0 +1,6 @@
|
||||
import Icon from '@ant-design/icons'
|
||||
import CustomIconSvg from '../../../assets/icons/jsonobjecticon.svg?react'
|
||||
|
||||
const JsonObjectIcon = (props) => <Icon component={CustomIconSvg} {...props} />
|
||||
|
||||
export default JsonObjectIcon
|
||||
6
src/components/Icons/JsonStringIcon.jsx
Normal file
6
src/components/Icons/JsonStringIcon.jsx
Normal file
@ -0,0 +1,6 @@
|
||||
import Icon from '@ant-design/icons'
|
||||
import CustomIconSvg from '../../../assets/icons/jsonstringicon.svg?react'
|
||||
|
||||
const JsonStringIcon = (props) => <Icon component={CustomIconSvg} {...props} />
|
||||
|
||||
export default JsonStringIcon
|
||||
Loading…
x
Reference in New Issue
Block a user