wip: add interactive seg model

This commit is contained in:
Qing
2022-11-27 21:25:27 +08:00
parent af87cca643
commit 023306ae40
20 changed files with 820 additions and 46 deletions

View File

@@ -4,7 +4,7 @@
"private": true,
"proxy": "http://localhost:8080",
"dependencies": {
"@heroicons/react": "^1.0.4",
"@heroicons/react": "^2.0.0",
"@radix-ui/react-dialog": "0.1.8-rc.25",
"@radix-ui/react-icons": "^1.1.1",
"@radix-ui/react-popover": "^1.0.0",

View File

@@ -114,3 +114,31 @@ export function modelDownloaded(name: string) {
method: 'GET',
})
}
export async function postInteractiveSeg(
imageFile: File,
maskFile: File | null,
clicks: number[][]
) {
const fd = new FormData()
fd.append('image', imageFile)
fd.append('clicks', JSON.stringify(clicks))
if (maskFile !== null) {
fd.append('mask', maskFile)
}
try {
const res = await fetch(`${API_ENDPOINT}/interactive_seg`, {
method: 'POST',
body: fd,
})
if (res.ok) {
const blob = await res.blob()
return { blob: URL.createObjectURL(blob) }
}
const errMsg = await res.text()
throw new Error(errMsg)
} catch (error) {
throw new Error(`Something went wrong: ${error}`)
}
}

View File

@@ -1,4 +1,3 @@
import { ChevronLeftIcon, ChevronRightIcon } from '@heroicons/react/outline'
import React, { useEffect, useState } from 'react'
import { useRecoilState, useRecoilValue } from 'recoil'
import {

View File

@@ -1,8 +1,3 @@
import {
ArrowsExpandIcon,
DownloadIcon,
EyeIcon,
} from '@heroicons/react/outline'
import React, {
SyntheticEvent,
useCallback,
@@ -10,6 +5,12 @@ import React, {
useRef,
useState,
} from 'react'
import {
CursorArrowRaysIcon,
EyeIcon,
ArrowsPointingOutIcon,
ArrowDownTrayIcon,
} from '@heroicons/react/24/outline'
import {
ReactZoomPanPinchRef,
TransformComponent,
@@ -17,7 +18,7 @@ import {
} from 'react-zoom-pan-pinch'
import { useRecoilState, useRecoilValue } from 'recoil'
import { useWindowSize, useKey, useKeyPressEvent } from 'react-use'
import inpaint from '../../adapters/inpainting'
import inpaint, { postInteractiveSeg } from '../../adapters/inpainting'
import Button from '../shared/Button'
import Slider from './Slider'
import SizeSelector from './SizeSelector'
@@ -34,7 +35,10 @@ import {
import {
croperState,
fileState,
interactiveSegClicksState,
isInpaintingState,
isInteractiveSegRunningState,
isInteractiveSegState,
isSDState,
negativePropmtState,
propmtState,
@@ -51,6 +55,8 @@ import emitter, {
CustomMaskEventData,
} from '../../event'
import FileSelect from '../FileSelect/FileSelect'
import InteractiveSeg from '../InteractiveSeg/InteractiveSeg'
import InteractiveSegConfirmActions from '../InteractiveSeg/ConfirmActions'
const TOOLBAR_SIZE = 200
const MIN_BRUSH_SIZE = 10
@@ -101,6 +107,20 @@ export default function Editor() {
const [isInpainting, setIsInpainting] = useRecoilState(isInpaintingState)
const runMannually = useRecoilValue(runManuallyState)
const isSD = useRecoilValue(isSDState)
const [isInteractiveSeg, setIsInteractiveSeg] = useRecoilState(
isInteractiveSegState
)
const [isInteractiveSegRunning, setIsInteractiveSegRunning] = useRecoilState(
isInteractiveSegRunningState
)
const [interactiveSegMask, setInteractiveSegMask] =
useState<HTMLImageElement | null>(null)
// only used while interactive segmentation is on
const [tmpInteractiveSegMask, setTmpInteractiveSegMask] =
useState<HTMLImageElement | null>(null)
const [clicks, setClicks] = useRecoilState(interactiveSegClicksState)
const [brushSize, setBrushSize] = useState(40)
const [original, isOriginalLoaded] = useImage(file)
@@ -159,13 +179,37 @@ export default function Editor() {
original.naturalWidth,
original.naturalHeight
)
if (isInteractiveSeg && tmpInteractiveSegMask !== null) {
context.drawImage(
tmpInteractiveSegMask,
0,
0,
original.naturalWidth,
original.naturalHeight
)
}
if (!isInteractiveSeg && interactiveSegMask !== null) {
context.drawImage(
interactiveSegMask,
0,
0,
original.naturalWidth,
original.naturalHeight
)
}
drawLines(context, lineGroup)
},
[context, original]
[
context,
original,
isInteractiveSeg,
tmpInteractiveSegMask,
interactiveSegMask,
]
)
const drawLinesOnMask = useCallback(
(_lineGroups: LineGroup[]) => {
(_lineGroups: LineGroup[], maskImage?: HTMLImageElement | null) => {
if (!context?.canvas.width || !context?.canvas.height) {
throw new Error('canvas has invalid size')
}
@@ -176,6 +220,17 @@ export default function Editor() {
throw new Error('could not retrieve mask canvas')
}
if (maskImage !== undefined && maskImage !== null) {
// TODO: check whether draw yellow mask works on backend
ctx.drawImage(
maskImage,
0,
0,
original.naturalWidth,
original.naturalHeight
)
}
_lineGroups.forEach(lineGroup => {
drawLines(ctx, lineGroup, 'white')
})
@@ -199,15 +254,24 @@ export default function Editor() {
)
const runInpainting = useCallback(
async (useLastLineGroup?: boolean, customMask?: File) => {
async (
useLastLineGroup?: boolean,
customMask?: File,
maskImage?: HTMLImageElement | null
) => {
if (file === undefined) {
return
}
const useCustomMask = customMask !== undefined
const useMaskImage = maskImage !== undefined && maskImage !== null
// useLastLineGroup 的影响
// 1. 使用上一次的 mask
// 2. 结果替换当前 render
console.log('runInpainting')
console.log({
useCustomMask,
useMaskImage,
})
let maskLineGroup: LineGroup = []
if (useLastLineGroup === true) {
@@ -216,7 +280,7 @@ export default function Editor() {
}
maskLineGroup = lastLineGroup
} else if (!useCustomMask) {
if (!hadDrawSomething()) {
if (!hadDrawSomething() && !useMaskImage) {
return
}
@@ -230,7 +294,7 @@ export default function Editor() {
setIsDraging(false)
setIsInpainting(true)
if (settings.graduallyInpainting) {
drawLinesOnMask([maskLineGroup])
drawLinesOnMask([maskLineGroup], maskImage)
} else {
drawLinesOnMask(newLineGroups)
}
@@ -309,6 +373,8 @@ export default function Editor() {
drawOnCurrentRender([])
}
setIsInpainting(false)
setTmpInteractiveSegMask(null)
setInteractiveSegMask(null)
},
[
lineGroups,
@@ -493,10 +559,22 @@ export default function Editor() {
}
}, [])
const onInteractiveCancel = useCallback(() => {
setIsInteractiveSeg(false)
setIsInteractiveSegRunning(false)
setClicks([])
setTmpInteractiveSegMask(null)
}, [])
const handleEscPressed = () => {
if (isInpainting) {
return
}
if (isInteractiveSeg) {
onInteractiveCancel()
}
if (isDraging || isMultiStrokeKeyPressed) {
setIsDraging(false)
setCurLineGroup([])
@@ -516,6 +594,8 @@ export default function Editor() {
isDraging,
isInpainting,
isMultiStrokeKeyPressed,
isInteractiveSeg,
onInteractiveCancel,
resetZoom,
drawOnCurrentRender,
]
@@ -536,6 +616,9 @@ export default function Editor() {
}
return
}
if (isInteractiveSeg) {
return
}
if (isPanning) {
return
}
@@ -551,10 +634,58 @@ export default function Editor() {
drawOnCurrentRender(lineGroup)
}
const runInteractiveSeg = async (newClicks: number[][]) => {
if (!file) {
return
}
setIsInteractiveSegRunning(true)
let targetFile = file
if (renders.length > 0) {
const lastRender = renders[renders.length - 1]
targetFile = await srcToFile(lastRender.currentSrc, file.name, file.type)
}
const prevMask = null
// prev_mask seems to be not working better
// if (tmpInteractiveSegMask !== null) {
// prevMask = await srcToFile(
// tmpInteractiveSegMask.currentSrc,
// 'prev_mask.jpg',
// 'image/jpeg'
// )
// }
try {
const res = await postInteractiveSeg(targetFile, prevMask, newClicks)
if (!res) {
throw new Error('Something went wrong on server side.')
}
const { blob } = res
const img = new Image()
img.onload = () => {
setTmpInteractiveSegMask(img)
}
img.src = blob
} catch (e: any) {
setToastState({
open: true,
desc: e.message ? e.message : e.toString(),
state: 'error',
duration: 4000,
})
}
setIsInteractiveSegRunning(false)
}
const onPointerUp = (ev: SyntheticEvent) => {
if (isMidClick(ev)) {
setIsPanning(false)
}
if (isInteractiveSeg) {
return
}
if (isPanning) {
return
@@ -601,7 +732,24 @@ export default function Editor() {
return false
}
const onCanvasMouseUp = (ev: SyntheticEvent) => {
if (isInteractiveSeg) {
const xy = mouseXY(ev)
const newClicks: number[][] = [...clicks]
if (isRightClick(ev)) {
newClicks.push([xy.x, xy.y, 0, newClicks.length])
} else {
newClicks.push([xy.x, xy.y, 1, newClicks.length])
}
runInteractiveSeg(newClicks)
setClicks(newClicks)
}
}
const onMouseDown = (ev: SyntheticEvent) => {
if (isInteractiveSeg) {
return
}
if (isChangingBrushSizeByMouse) {
return
}
@@ -714,6 +862,9 @@ export default function Editor() {
useKey(undoPredicate, undo, undefined, [undoStroke, undoRender, isSD])
const disableUndo = () => {
if (isInteractiveSeg) {
return true
}
if (isInpainting) {
return true
}
@@ -790,6 +941,9 @@ export default function Editor() {
useKey(redoPredicate, redo, undefined, [redoStroke, redoRender, isSD])
const disableRedo = () => {
if (isInteractiveSeg) {
return true
}
if (isInpainting) {
return true
}
@@ -877,6 +1031,16 @@ export default function Editor() {
return undefined
}, [showBrush, isPanning])
useHotKey(
'i',
() => {
if (!isInteractiveSeg) {
setIsInteractiveSeg(true)
}
},
isInteractiveSeg
)
// Standard Hotkeys for Brush Size
useHotKey('[', () => {
setBrushSize(currentBrushSize => {
@@ -1002,6 +1166,20 @@ export default function Editor() {
)
}
const renderInteractiveSegCursor = () => {
return (
<div
className="interactive-seg-cursor"
style={{
left: `${x}px`,
top: `${y}px`,
}}
>
<CursorArrowRaysIcon />
</div>
)
}
const renderCanvas = () => {
return (
<TransformWrapper
@@ -1029,7 +1207,11 @@ export default function Editor() {
}}
>
<TransformComponent
contentClass={isInpainting ? 'editor-canvas-loading' : ''}
contentClass={
isInpainting || isInteractiveSegRunning
? 'editor-canvas-loading'
: ''
}
contentStyle={{
visibility: initialCentered ? 'visible' : 'hidden',
}}
@@ -1052,6 +1234,7 @@ export default function Editor() {
onFocus={() => toggleShowBrush(true)}
onMouseLeave={() => toggleShowBrush(false)}
onMouseDown={onMouseDown}
onMouseUp={onCanvasMouseUp}
onMouseMove={onMouseDrag}
ref={r => {
if (r && !context) {
@@ -1101,11 +1284,22 @@ export default function Editor() {
) : (
<></>
)}
{isInteractiveSeg ? <InteractiveSeg /> : <></>}
</TransformComponent>
</TransformWrapper>
)
}
const onInteractiveAccept = () => {
setInteractiveSegMask(tmpInteractiveSegMask)
setTmpInteractiveSegMask(null)
if (!runMannually && tmpInteractiveSegMask) {
runInpainting(false, undefined, tmpInteractiveSegMask)
}
}
return (
<div
className="editor-container"
@@ -1113,17 +1307,26 @@ export default function Editor() {
onMouseMove={onMouseMove}
onMouseUp={onPointerUp}
>
<InteractiveSegConfirmActions
onAcceptClick={onInteractiveAccept}
onCancelClick={onInteractiveCancel}
/>
{file === undefined ? renderFileSelect() : renderCanvas()}
{showBrush && !isInpainting && !isPanning && (
<div
className="brush-shape"
style={getBrushStyle(
isChangingBrushSizeByMouse ? changeBrushSizeByMouseInit.x : x,
isChangingBrushSizeByMouse ? changeBrushSizeByMouseInit.y : y
)}
/>
)}
{showBrush &&
!isInpainting &&
!isPanning &&
(isInteractiveSeg ? (
renderInteractiveSegCursor()
) : (
<div
className="brush-shape"
style={getBrushStyle(
isChangingBrushSizeByMouse ? changeBrushSizeByMouseInit.x : x,
isChangingBrushSizeByMouse ? changeBrushSizeByMouseInit.y : y
)}
/>
))}
{showRefBrush && (
<div
@@ -1151,10 +1354,17 @@ export default function Editor() {
onClick={() => setShowRefBrush(false)}
/>
<div className="editor-toolkit-btns">
<Button
toolTip="Interactive Segmentation"
tooltipPosition="top"
icon={<CursorArrowRaysIcon />}
disabled={isInteractiveSeg || isInpainting}
onClick={() => setIsInteractiveSeg(true)}
/>
<Button
toolTip="Reset Zoom & Pan"
tooltipPosition="top"
icon={<ArrowsExpandIcon />}
icon={<ArrowsPointingOutIcon />}
disabled={scale === minScale && panned === false}
onClick={resetZoom}
/>
@@ -1224,7 +1434,7 @@ export default function Editor() {
<Button
toolTip="Save Image"
tooltipPosition="top"
icon={<DownloadIcon />}
icon={<ArrowDownTrayIcon />}
disabled={!renders.length}
onClick={download}
/>
@@ -1247,11 +1457,13 @@ export default function Editor() {
/>
</svg>
}
disabled={!hadDrawSomething() || isInpainting}
disabled={
!interactiveSegMask &&
(!hadDrawSomething() || isInpainting || isInteractiveSeg)
}
onClick={() => {
if (!isInpainting && hadDrawSomething()) {
runInpainting()
}
// ensured by disabled
runInpainting(false, undefined, interactiveSegMask)
}}
/>
)}

View File

@@ -1,9 +1,10 @@
import { ArrowLeftIcon, UploadIcon } from '@heroicons/react/outline'
import { ArrowUpTrayIcon } from '@heroicons/react/24/outline'
import { PlayIcon } from '@radix-ui/react-icons'
import React, { useState } from 'react'
import { useRecoilState, useRecoilValue } from 'recoil'
import {
fileState,
interactiveSegClicksState,
isInpaintingState,
isSDState,
maskState,
@@ -37,9 +38,11 @@ const Header = () => {
>
<label htmlFor={uploadElemId}>
<Button
icon={<UploadIcon />}
icon={<ArrowUpTrayIcon />}
style={{ border: 0 }}
disabled={isInpainting}
toolTip="Upload image"
tooltipPosition="bottom"
>
<input
style={{ display: 'none' }}
@@ -67,7 +70,12 @@ const Header = () => {
}}
>
<label htmlFor={maskUploadElemId}>
<Button style={{ border: 0 }} disabled={isInpainting}>
<Button
style={{ border: 0 }}
disabled={isInpainting}
toolTip="Upload custom mask"
tooltipPosition="bottom"
>
<input
style={{ display: 'none' }}
id={maskUploadElemId}

View File

@@ -1,6 +1,6 @@
import React, { useEffect } from 'react'
import { atom, useRecoilState } from 'recoil'
import { SunIcon, MoonIcon } from '@heroicons/react/outline'
import { SunIcon, MoonIcon } from '@heroicons/react/24/outline'
export const themeState = atom({
key: 'themeState',

View File

@@ -0,0 +1,62 @@
import React, { useEffect, useState } from 'react'
import { useRecoilState, useRecoilValue } from 'recoil'
import {
interactiveSegClicksState,
isInteractiveSegRunningState,
isInteractiveSegState,
} from '../../store/Atoms'
import Button from '../shared/Button'
interface Props {
onCancelClick: () => void
onAcceptClick: () => void
}
const InteractiveSegConfirmActions = (props: Props) => {
const { onCancelClick, onAcceptClick } = props
const [isInteractiveSeg, setIsInteractiveSeg] = useRecoilState(
isInteractiveSegState
)
const [isInteractiveSegRunning, setIsInteractiveSegRunning] = useRecoilState(
isInteractiveSegRunningState
)
const [clicks, setClicks] = useRecoilState(interactiveSegClicksState)
const clearState = () => {
setIsInteractiveSeg(false)
setIsInteractiveSegRunning(false)
setClicks([])
}
return (
<div
className="interactive-seg-confirm-actions"
style={{
visibility: isInteractiveSeg ? 'visible' : 'hidden',
}}
>
<div className="action-buttons">
<Button
onClick={() => {
clearState()
onCancelClick()
}}
>
Cancel
</Button>
<Button
border
onClick={() => {
clearState()
onAcceptClick()
}}
>
Accept
</Button>
</div>
</div>
)
}
export default InteractiveSegConfirmActions

View File

@@ -0,0 +1,69 @@
$positiveBackgroundColor: rgba(21, 215, 121, 0.936);
$positiveOutline: 6px solid rgba(98, 255, 179, 0.31);
$negativeBackgroundColor: rgba(237, 49, 55, 0.942);
$negativeOutline: 6px solid rgba(255, 89, 95, 0.31);
.interactive-seg-wrapper {
position: absolute;
height: 100%;
width: 100%;
z-index: 2;
overflow: hidden;
pointer-events: none;
.click-item {
position: absolute;
height: 8px;
width: 8px;
border-radius: 50%;
}
.click-item-positive {
background-color: $positiveBackgroundColor;
outline: $positiveOutline;
}
.click-item-negative {
background-color: $negativeBackgroundColor;
outline: $negativeOutline;
}
}
.interactive-seg-confirm-actions {
position: absolute;
top: 68px;
z-index: 5;
background-color: var(--page-bg);
border-radius: 16px;
border-style: solid;
border-color: var(--border-color);
border-width: 1px;
padding: 8px;
.action-buttons {
display: flex;
justify-content: center;
align-items: center;
gap: 8px;
}
}
@keyframes pulse {
to {
box-shadow: 0 0 0 14px rgba(21, 215, 121, 0);
}
}
.interactive-seg-cursor {
position: absolute;
height: 20px;
width: 20px;
pointer-events: none;
color: hsla(137, 100%, 95.8%, 0.98);
border-radius: 50%;
background-color: $positiveBackgroundColor;
// outline: $positiveOutline;
transform: 'translate(-50%, -50%)';
box-shadow: 0 0 0 0 rgba(21, 215, 121, 0.936);
animation: pulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

View File

@@ -0,0 +1,37 @@
import { nanoid } from 'nanoid'
import React, { useEffect, useState } from 'react'
import { useRecoilValue } from 'recoil'
import { interactiveSegClicksState } from '../../store/Atoms'
interface ItemProps {
x: number
y: number
positive: boolean
}
const Item = (props: ItemProps) => {
const { x, y, positive } = props
const name = positive ? 'click-item-positive' : 'click-item-negative'
return <div className={`click-item ${name}`} style={{ left: x, top: y }} />
}
const InteractiveSeg = () => {
const clicks = useRecoilValue<number[][]>(interactiveSegClicksState)
return (
<div className="interactive-seg-wrapper">
{clicks.map(click => {
return (
<Item
key={click[3]}
x={click[0]}
y={click[1]}
positive={click[2] === 1}
/>
)
})}
</div>
)
}
export default InteractiveSeg

View File

@@ -56,6 +56,7 @@ export default function ShortcutsModal() {
/>
<ShortCut content="Cancel Mask Drawing" keys={['Esc']} />
<ShortCut content="Run Inpainting Manually" keys={['Shift', 'R']} />
<ShortCut content="Interactive Segmentation" keys={['I']} />
<ShortCut content="Undo Inpainting" keys={[CmdOrCtrl, 'Z']} />
<ShortCut content="Redo Inpainting" keys={[CmdOrCtrl, 'Shift', 'Z']} />
<ShortCut content="View Original Image" keys={['Hold Tab']} />

View File

@@ -1,4 +1,4 @@
import { XIcon } from '@heroicons/react/outline'
import { XMarkIcon } from '@heroicons/react/24/outline'
import React, { ReactNode } from 'react'
import { useRecoilState } from 'recoil'
import * as DialogPrimitive from '@radix-ui/react-dialog'
@@ -41,7 +41,7 @@ const Modal = React.forwardRef<
<div className="modal-header">
<DialogPrimitive.Title>{title}</DialogPrimitive.Title>
{showCloseIcon ? (
<Button icon={<XIcon />} onClick={onClose} />
<Button icon={<XMarkIcon />} onClick={onClose} />
) : (
<></>
)}

View File

@@ -3,7 +3,7 @@ import {
CheckIcon,
ChevronDownIcon,
ChevronUpIcon,
} from '@heroicons/react/outline'
} from '@heroicons/react/24/outline'
import * as Select from '@radix-ui/react-select'
type SelectorChevronDirection = 'up' | 'down'

View File

@@ -1,7 +1,7 @@
import * as React from 'react'
import * as ToastPrimitive from '@radix-ui/react-toast'
import { ToastProps } from '@radix-ui/react-toast'
import { CheckIcon, ExclamationCircleIcon } from '@heroicons/react/outline'
import { CheckIcon, ExclamationCircleIcon } from '@heroicons/react/24/outline'
const LoadingIcon = () => {
return (

View File

@@ -14,11 +14,6 @@ export enum AIModel {
Mange = 'manga',
}
export const fileState = atom<File | undefined>({
key: 'fileState',
default: undefined,
})
export const maskState = atom<File | undefined>({
key: 'maskState',
default: undefined,
@@ -32,17 +27,25 @@ export interface Rect {
}
interface AppState {
file: File | undefined
disableShortCuts: boolean
isInpainting: boolean
isDisableModelSwitch: boolean
isInteractiveSeg: boolean
isInteractiveSegRunning: boolean
interactiveSegClicks: number[][]
}
export const appState = atom<AppState>({
key: 'appState',
default: {
file: undefined,
disableShortCuts: false,
isInpainting: false,
isDisableModelSwitch: false,
isInteractiveSeg: false,
isInteractiveSegRunning: false,
interactiveSegClicks: [],
},
})
@@ -68,6 +71,60 @@ export const isInpaintingState = selector({
},
})
export const fileState = selector({
key: 'fileState',
get: ({ get }) => {
const app = get(appState)
return app.file
},
set: ({ get, set }, newValue: any) => {
const app = get(appState)
set(appState, {
...app,
file: newValue,
interactiveSegClicks: [],
isInteractiveSeg: false,
isInteractiveSegRunning: false,
})
},
})
export const isInteractiveSegState = selector({
key: 'isInteractiveSegState',
get: ({ get }) => {
const app = get(appState)
return app.isInteractiveSeg
},
set: ({ get, set }, newValue: any) => {
const app = get(appState)
set(appState, { ...app, isInteractiveSeg: newValue })
},
})
export const isInteractiveSegRunningState = selector({
key: 'isInteractiveSegRunningState',
get: ({ get }) => {
const app = get(appState)
return app.isInteractiveSegRunning
},
set: ({ get, set }, newValue: any) => {
const app = get(appState)
set(appState, { ...app, isInteractiveSegRunning: newValue })
},
})
export const interactiveSegClicksState = selector({
key: 'interactiveSegClicksState',
get: ({ get }) => {
const app = get(appState)
return app.interactiveSegClicks
},
set: ({ get, set }, newValue: any) => {
const app = get(appState)
set(appState, { ...app, interactiveSegClicks: newValue })
},
})
export const isDisableModelSwitchState = selector({
key: 'isDisableModelSwitchState',
get: ({ get }) => {

View File

@@ -15,6 +15,7 @@
@use '../components/Settings/Settings.scss';
@use '../components/SidePanel/SidePanel.scss';
@use '../components/Croper/Croper.scss';
@use '../components/InteractiveSeg/InteractiveSeg.scss';
// Shared
@use '../components/FileSelect/FileSelect';

View File

@@ -1298,10 +1298,10 @@
dependencies:
"@hapi/hoek" "^8.3.0"
"@heroicons/react@^1.0.4":
version "1.0.4"
resolved "https://registry.npmjs.org/@heroicons/react/-/react-1.0.4.tgz"
integrity sha512-3kOrTmo8+Z8o6AL0rzN82MOf8J5CuxhRLFhpI8mrn+3OqekA6d5eb1GYO3EYYo1Vn6mYQSMNTzCWbEwUInb0cQ==
"@heroicons/react@^2.0.0":
version "2.0.13"
resolved "https://registry.npmmirror.com/@heroicons/react/-/react-2.0.13.tgz#9b1cc54ff77d6625c9565efdce0054a4bcd9074c"
integrity sha512-iSN5XwmagrnirWlYEWNPdCDj9aRYVD/lnK3JlsC9/+fqGF80k8C7rl+1HCvBX0dBoagKqOFBs6fMhJJ1hOg1EQ==
"@humanwhocodes/config-array@^0.5.0":
version "0.5.0"