summaryrefslogtreecommitdiff
path: root/examples/starter/src/components/Logo.astro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/starter/src/components/Logo.astro')
-rw-r--r--examples/starter/src/components/Logo.astro10
1 files changed, 0 insertions, 10 deletions
diff --git a/examples/starter/src/components/Logo.astro b/examples/starter/src/components/Logo.astro
deleted file mode 100644
index ca45ef529..000000000
--- a/examples/starter/src/components/Logo.astro
+++ /dev/null
@@ -1,10 +0,0 @@
----
-// Export a "Props" interface to .
-export interface Props {
- height?: number;
- width?: number;
-}
-const { height = 80, width = 60 } = Astro.props;
----
-
-<img height={height} width={width} src="/logo.svg" alt="Astro logo" />