2023-05-31 17:56:58 +02:00
|
|
|
import { Difficulty } from 'shared/components/designs/difficulty.mjs'
|
2023-06-02 12:13:49 -05:00
|
|
|
import { ListValue } from '../shared/values.mjs'
|
2023-05-31 17:56:58 +02:00
|
|
|
|
|
|
|
export const RendererSettingValue = ListValue
|
2023-06-01 17:01:48 +02:00
|
|
|
export const InspectSettingValue = ListValue
|
2023-06-01 09:06:11 +02:00
|
|
|
export const ControlSettingValue = ({ control }) => <Difficulty score={control} color="primary" />
|