diff options
author | 2022-05-30 14:42:59 +0200 | |
---|---|---|
committer | 2022-05-30 09:42:59 -0300 | |
commit | 95c506bf6b8f97a7406ccea25ebcb6a6bc66907c (patch) | |
tree | 034e7ed887317a3944493481f5e1df56198b7232 /examples/basics/src | |
parent | 1bf42a93a1e8a7f5a9b2df6967adcced982b2fbe (diff) | |
download | astro-95c506bf6b8f97a7406ccea25ebcb6a6bc66907c.tar.gz astro-95c506bf6b8f97a7406ccea25ebcb6a6bc66907c.tar.zst astro-95c506bf6b8f97a7406ccea25ebcb6a6bc66907c.zip |
Remove unused slot until slot bugs are fixed (#3475)
Simple fix for #3473 as the slot was never used in this example.
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
Diffstat (limited to 'examples/basics/src')
-rw-r--r-- | examples/basics/src/components/Card.astro | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/basics/src/components/Card.astro b/examples/basics/src/components/Card.astro index 7b911b395..53b67a9da 100644 --- a/examples/basics/src/components/Card.astro +++ b/examples/basics/src/components/Card.astro @@ -14,7 +14,6 @@ const {href, title, body} = Astro.props; </h2> <p> {body} - <slot name="icon" /> </p> </a> </li> @@ -72,4 +71,4 @@ const {href, title, body} = Astro.props; .link-card:is(:hover, :focus-within) h2 span { transform: translateX(2px); } -</style>
\ No newline at end of file +</style> |