mirror of
https://github.com/tabler/tabler.git
synced 2026-08-08 04:12:26 +04:00
8962710163
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
20 lines
356 B
Plaintext
20 lines
356 B
Plaintext
---
|
|
import { Code } from 'astro:components'
|
|
import { site } from '@shared/lib/site.ts'
|
|
|
|
interface Props {
|
|
plugins: string[]
|
|
}
|
|
|
|
const { plugins }: Props = Astro.props
|
|
---
|
|
|
|
<Code
|
|
lang="html"
|
|
code={plugins
|
|
.map((plugin) => {
|
|
return `<link rel="stylesheet" href="${site.cdnUrl}/dist/css/tabler-${plugin}.min.css" />`
|
|
})
|
|
.join('\n')}
|
|
/>
|