master @ 8 LINES
[ HISTORY ] [ UP ]
┌─ ASTRO ────────────────────────────────────────────────────────────────────┐
│ --- │
│ import type { Props } from "./Badge"; │
│ import "./Badge.scss"; │
│ │
│ const { label, href } = Astro.props as Props; │
│ --- │
│ {href ? <a class="badge" href={href}>[{label}]</a> : <span class="badge">[{label}] │
│ </span>} │
└────────────────────────────────────────────────────────────────────────────────────┘
┌─ ASTRO ──────────────────────────────┐
│ --- │
│ import type { Props } from "./Badge"; │
│ import "./Badge.scss"; │
│ │
│ const { label, href } = Astro.props as Props │
│ ; │
│ --- │
│ {href ? <a class="badge" href={href}>[{label │
│ }]</a> : <span class="badge">[{label}]</span │
│ >} │
└──────────────────────────────────────────────┘
──────────────────────────────────────────────────────────────────────────────────────
OOKNET
────────────────────────────────────────────────
OOKNET