import { DesignOptions } from './design-options/index.mjs' import { CoreSettings, ns as coreSettingsNs } from './core-settings/index.mjs' import { XrayMenu } from './xray/index.mjs' import { TestDesignOptions } from './test-design-options/index.mjs' import { BulletIcon } from 'shared/components/icons.mjs' export const linkClasses = ` text-base text-base-content sm:text-base-content hover:text-secondary sm:hover:text-secondary ` export const ns = coreSettingsNs export const Ul = (props) => export const Li = (props) => (
  • {props.children}
  • ) export const Details = (props) => (
    {props.children}
    ) export const Deg = ({ changed }) => ( ) export const NoSumDiv = (props) => (
    {props.children}
    ) export const SumDiv = (props) => (
    {props.children}
    ) export const Summary = (props) => ( {props.children} ) export const TopSummary = (props) => ( {props.icon || null} {props.children} ) export const SumButton = (props) => ( ) export const TopSumTitle = (props) => ( {props.children} ) export const SecText = (props) => props.raw ? ( ) : ( {props.children} ) export const AccentText = (props) => props.raw ? ( ) : ( {props.children} ) export const PrimaryText = (props) => props.raw ? ( ) : ( {props.children} ) export const DraftMenu = (props) => { const { design, patternConfig, settings, ui, update, Option = false } = props return ( ) } export const TestMenu = (props) => { return ( ) }