{"version":3,"file":"ImplyHead-T1Mq50tf.js","sources":["../../../../../src/components/ImplyHead.tsx"],"sourcesContent":["import { A } from \"@solidjs/router\";\nimport { For, JSX, Show } from \"solid-js\";\n\ninterface Know {\n id: string;\n essence: string;\n}\n\ninterface Imply {\n know?: Know | null;\n negative: boolean;\n propositions?: Know[];\n}\n\nfunction Linkable(props: {\n linkable: boolean;\n link: string;\n children: JSX.Element;\n}) {\n return props.linkable ? (\n {props.children}\n ) : (\n props.children\n );\n}\n\nexport default function ImplyHead({\n imply,\n linkable = false,\n}: {\n imply: Imply;\n linkable?: boolean;\n}) {\n return (\n