18 lines
369 B
TypeScript
18 lines
369 B
TypeScript
![]() |
import { CodeEditor } from 'components/shared/CodeEditor'
|
||
|
import React from 'react'
|
||
|
|
||
|
type Props = {
|
||
|
customCss?: string
|
||
|
onCustomCssChange: (css: string) => void
|
||
|
}
|
||
|
|
||
|
export const CustomCssSettings = ({ customCss, onCustomCssChange }: Props) => {
|
||
|
return (
|
||
|
<CodeEditor
|
||
|
value={customCss ?? ''}
|
||
|
lang="css"
|
||
|
onChange={onCustomCssChange}
|
||
|
/>
|
||
|
)
|
||
|
}
|