refactor: biome lint
All checks were successful
build dist / build-dist (push) Successful in 32s

This commit is contained in:
z0x 2025-04-24 22:12:22 -04:00
parent 844d31754d
commit 36870785bc
35 changed files with 1344 additions and 1330 deletions

View file

@ -1,15 +1,15 @@
---
import { cn } from '@/lib/utils'
import { cn } from "@/lib/utils";
type Props = {
href: string
external?: boolean
class?: string
underline?: boolean
[key: string]: any
}
href: string;
external?: boolean;
class?: string;
underline?: boolean;
[key: string]: any;
};
const { href, external, class: className, underline, ...rest } = Astro.props
const { href, external, class: className, underline, ...rest } = Astro.props;
---
<a