mirror of
https://github.com/langgenius/dify.git
synced 2026-04-27 22:18:15 +08:00
chore: add table cells icon to db selector
This commit is contained in:
@ -0,0 +1,3 @@
|
||||
<svg width="12" height="11" viewBox="0 0 12 11" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.583333 0C0.26117 0 0 0.26117 0 0.583333V9.91667C0 10.2388 0.26117 10.5 0.583333 10.5H11.0833C11.4055 10.5 11.6667 10.2388 11.6667 9.91667V0.583333C11.6667 0.26117 11.4055 0 11.0833 0H0.583333ZM5.25 1.16667V2.91667H1.16667V1.16667H5.25ZM1.16667 6.41667V4.08333H5.25V6.41667H1.16667ZM1.16667 7.58333H5.25V9.33333H1.16667V7.58333ZM6.41667 7.58333H10.5V9.33333H6.41667V7.58333ZM10.5 6.41667H6.41667V4.08333H10.5V6.41667ZM10.5 1.16667V2.91667H6.41667V1.16667H10.5Z" fill="#354052"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 593 B |
@ -0,0 +1,26 @@
|
||||
{
|
||||
"icon": {
|
||||
"type": "element",
|
||||
"isRootNode": true,
|
||||
"name": "svg",
|
||||
"attributes": {
|
||||
"width": "12",
|
||||
"height": "11",
|
||||
"viewBox": "0 0 12 11",
|
||||
"fill": "none",
|
||||
"xmlns": "http://www.w3.org/2000/svg"
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "element",
|
||||
"name": "path",
|
||||
"attributes": {
|
||||
"d": "M0.583333 0C0.26117 0 0 0.26117 0 0.583333V9.91667C0 10.2388 0.26117 10.5 0.583333 10.5H11.0833C11.4055 10.5 11.6667 10.2388 11.6667 9.91667V0.583333C11.6667 0.26117 11.4055 0 11.0833 0H0.583333ZM5.25 1.16667V2.91667H1.16667V1.16667H5.25ZM1.16667 6.41667V4.08333H5.25V6.41667H1.16667ZM1.16667 7.58333H5.25V9.33333H1.16667V7.58333ZM6.41667 7.58333H10.5V9.33333H6.41667V7.58333ZM10.5 6.41667H6.41667V4.08333H10.5V6.41667ZM10.5 1.16667V2.91667H6.41667V1.16667H10.5Z",
|
||||
"fill": "currentColor"
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
]
|
||||
},
|
||||
"name": "TableCells"
|
||||
}
|
||||
@ -0,0 +1,20 @@
|
||||
// GENERATE BY script
|
||||
// DON NOT EDIT IT MANUALLY
|
||||
|
||||
import type { IconData } from '@/app/components/base/icons/IconBase'
|
||||
import * as React from 'react'
|
||||
import IconBase from '@/app/components/base/icons/IconBase'
|
||||
import data from './TableCells.json'
|
||||
|
||||
const Icon = (
|
||||
{
|
||||
ref,
|
||||
...props
|
||||
}: React.SVGProps<SVGSVGElement> & {
|
||||
ref?: React.RefObject<React.RefObject<HTMLOrSVGElement>>
|
||||
},
|
||||
) => <IconBase {...props} ref={ref} data={data as IconData} />
|
||||
|
||||
Icon.displayName = 'TableCells'
|
||||
|
||||
export default Icon
|
||||
@ -10,5 +10,6 @@ export { default as PatternRecognition } from './PatternRecognition'
|
||||
export { default as PromptEngineering } from './PromptEngineering'
|
||||
export { default as PuzzlePiece01 } from './PuzzlePiece01'
|
||||
export { default as Semantic } from './Semantic'
|
||||
export { default as TableCells } from './TableCells'
|
||||
export { default as TerminalSquare } from './TerminalSquare'
|
||||
export { default as Variable02 } from './Variable02'
|
||||
|
||||
Reference in New Issue
Block a user