feat: annotation management frontend (#1764)
This commit is contained in:
92
web/app/components/base/icons/src/public/avatar/Robot.json
Normal file
92
web/app/components/base/icons/src/public/avatar/Robot.json
Normal file
File diff suppressed because one or more lines are too long
16
web/app/components/base/icons/src/public/avatar/Robot.tsx
Normal file
16
web/app/components/base/icons/src/public/avatar/Robot.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
// GENERATE BY script
|
||||
// DON NOT EDIT IT MANUALLY
|
||||
|
||||
import * as React from 'react'
|
||||
import data from './Robot.json'
|
||||
import IconBase from '@/app/components/base/icons/IconBase'
|
||||
import type { IconBaseProps, IconData } from '@/app/components/base/icons/IconBase'
|
||||
|
||||
const Icon = React.forwardRef<React.MutableRefObject<SVGElement>, Omit<IconBaseProps, 'data'>>((
|
||||
props,
|
||||
ref,
|
||||
) => <IconBase {...props} ref={ref} data={data as IconData} />)
|
||||
|
||||
Icon.displayName = 'Robot'
|
||||
|
||||
export default Icon
|
||||
89
web/app/components/base/icons/src/public/avatar/User.json
Normal file
89
web/app/components/base/icons/src/public/avatar/User.json
Normal file
@@ -0,0 +1,89 @@
|
||||
{
|
||||
"icon": {
|
||||
"type": "element",
|
||||
"isRootNode": true,
|
||||
"name": "svg",
|
||||
"attributes": {
|
||||
"width": "512",
|
||||
"height": "512",
|
||||
"viewBox": "0 0 512 512",
|
||||
"fill": "none",
|
||||
"xmlns": "http://www.w3.org/2000/svg"
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "element",
|
||||
"name": "g",
|
||||
"attributes": {
|
||||
"clip-path": "url(#clip0_5968_39205)"
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "element",
|
||||
"name": "rect",
|
||||
"attributes": {
|
||||
"width": "512",
|
||||
"height": "512",
|
||||
"rx": "256",
|
||||
"fill": "#B2DDFF"
|
||||
},
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"type": "element",
|
||||
"name": "circle",
|
||||
"attributes": {
|
||||
"opacity": "0.68",
|
||||
"cx": "256",
|
||||
"cy": "196",
|
||||
"r": "84",
|
||||
"fill": "white"
|
||||
},
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"type": "element",
|
||||
"name": "ellipse",
|
||||
"attributes": {
|
||||
"opacity": "0.68",
|
||||
"cx": "256",
|
||||
"cy": "583.5",
|
||||
"rx": "266",
|
||||
"ry": "274.5",
|
||||
"fill": "white"
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "element",
|
||||
"name": "defs",
|
||||
"attributes": {},
|
||||
"children": [
|
||||
{
|
||||
"type": "element",
|
||||
"name": "clipPath",
|
||||
"attributes": {
|
||||
"id": "clip0_5968_39205"
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "element",
|
||||
"name": "rect",
|
||||
"attributes": {
|
||||
"width": "512",
|
||||
"height": "512",
|
||||
"rx": "256",
|
||||
"fill": "white"
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"name": "User"
|
||||
}
|
||||
16
web/app/components/base/icons/src/public/avatar/User.tsx
Normal file
16
web/app/components/base/icons/src/public/avatar/User.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
// GENERATE BY script
|
||||
// DON NOT EDIT IT MANUALLY
|
||||
|
||||
import * as React from 'react'
|
||||
import data from './User.json'
|
||||
import IconBase from '@/app/components/base/icons/IconBase'
|
||||
import type { IconBaseProps, IconData } from '@/app/components/base/icons/IconBase'
|
||||
|
||||
const Icon = React.forwardRef<React.MutableRefObject<SVGElement>, Omit<IconBaseProps, 'data'>>((
|
||||
props,
|
||||
ref,
|
||||
) => <IconBase {...props} ref={ref} data={data as IconData} />)
|
||||
|
||||
Icon.displayName = 'User'
|
||||
|
||||
export default Icon
|
||||
2
web/app/components/base/icons/src/public/avatar/index.ts
Normal file
2
web/app/components/base/icons/src/public/avatar/index.ts
Normal file
@@ -0,0 +1,2 @@
|
||||
export { default as Robot } from './Robot'
|
||||
export { default as User } from './User'
|
||||
@@ -25,7 +25,7 @@
|
||||
"attributes": {
|
||||
"width": "600",
|
||||
"height": "600",
|
||||
"fill": "url(#pattern0)"
|
||||
"fill": "url(#pattern999)"
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
@@ -40,7 +40,7 @@
|
||||
"type": "element",
|
||||
"name": "pattern",
|
||||
"attributes": {
|
||||
"id": "pattern0",
|
||||
"id": "pattern999",
|
||||
"patternContentUnits": "objectBoundingBox",
|
||||
"width": "1",
|
||||
"height": "1"
|
||||
|
||||
Reference in New Issue
Block a user