mirror of
https://github.com/tabler/tabler.git
synced 2026-08-28 12:56:24 +04:00
13 lines
240 B
Plaintext
13 lines
240 B
Plaintext
---
|
|
import { Code } from 'astro:components'
|
|
import { cdnPluginSnippet } from '@lib/cdn-snippets.ts'
|
|
|
|
interface Props {
|
|
plugins: string[]
|
|
}
|
|
|
|
const { plugins }: Props = Astro.props
|
|
---
|
|
|
|
<Code lang="html" code={cdnPluginSnippet(plugins)} />
|