Skip to content

Commit 5adf5c3

Browse files
committed
fix: partial files broken by biome plugin
1 parent 5761acd commit 5adf5c3

File tree

4 files changed

+75
-0
lines changed

4 files changed

+75
-0
lines changed

src/packlets/sprites/inner.svelte

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<svg
2+
width="300"
3+
height="300"
4+
viewBox="0 0 300 300"
5+
fill="none"
6+
xmlns="http://www.w3.org/2000/svg"
7+
{...$$props}
8+
>
9+
<path
10+
d="M236.948 86.9441H213.064V63.0591L150 0L86.9392 63.0591V86.9441H63.0614L0 149.995L63.0614 213.055H86.9392V236.94L150 300L213.064 236.94V213.055H236.948L300 149.995L236.948 86.9441Z"
11+
fill="currentColor"
12+
/>
13+
</svg>

src/packlets/sprites/outer.svelte

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<svg
2+
width="300"
3+
height="300"
4+
viewBox="0 0 300 300"
5+
fill="none"
6+
xmlns="http://www.w3.org/2000/svg"
7+
{...$$props}
8+
>
9+
<path
10+
d="M150 300L84.6851 234.684V215.314H65.3149L0 150L65.3149 84.6852H84.6851V65.3148L150 0L215.316 65.3148V84.6852H234.685L300 150L234.685 215.314H215.316V234.684L150 300ZM95.811 230.079L150 284.267L204.19 230.079V204.188H230.079L284.269 150L230.079 95.8111H204.19V69.921L150 15.7322L95.811 69.921V95.8111H69.9209L15.732 150L69.9209 204.188H95.811V230.079Z"
11+
fill="currentColor"
12+
/>
13+
</svg>

src/packlets/sprites/square.astro

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
export type Props = astroHTML.JSX.SVGAttributes
3+
const { props } = Astro
4+
---
5+
6+
<svg
7+
width="300"
8+
height="300"
9+
viewBox="0 0 300 300"
10+
fill="none"
11+
xmlns="http://www.w3.org/2000/svg"
12+
{...props}
13+
>
14+
<mask
15+
id="mask0_203_45"
16+
style="mask-type:alpha"
17+
maskUnits="userSpaceOnUse"
18+
x="1"
19+
y="0"
20+
width="299"
21+
height="299"
22+
>
23+
<path
24+
d="M207.501 108.164H191.899V92.5611L150.704 51.3677L109.511 92.5611V108.164H93.9134L52.72 149.352L93.9134 190.546H109.511V206.149L150.704 247.343L191.899 206.149V190.546H207.501L248.688 149.352L207.501 108.164Z"
25+
fill="black"></path>
26+
<path
27+
d="M150.562 298.706L85.529 233.672V214.385H66.2424L1.20923 149.353L66.2424 84.3199H85.529V65.0331L150.562 0L215.596 65.0331V84.3199H234.882L299.915 149.353L234.882 214.385H215.596V233.672L150.562 298.706ZM96.6069 229.087L150.562 283.041L204.518 229.087V203.307H230.296L284.252 149.353L230.296 95.3978H204.518V69.6194L150.562 15.6643L96.6069 69.6194V95.3978H70.8285L16.8734 149.353L70.8285 203.307H96.6069V229.087Z"
28+
fill="black"></path>
29+
</mask>
30+
<g mask="url(#mask0_203_45)">
31+
<rect width="300" height="300" fill="currentColor"></rect>
32+
</g>
33+
</svg>

src/pages/index.astro

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
import Base from '$layouts/base.astro'
3+
import Playground from '$front/playground.svelte'
4+
import Date from '$front/date.svelte'
5+
import Location from '$front/location.svelte'
6+
import Center from '$front/center.astro'
7+
---
8+
9+
<Base title="JavaScript Bangkok 2.0.0">
10+
<Playground client:idle>
11+
<Date client:idle />
12+
<Location client:idle />
13+
<Center />
14+
</Playground>
15+
<section class="bg-ขาบดำ py-16"></section>
16+
</Base>

0 commit comments

Comments
 (0)