summaryrefslogtreecommitdiff
path: root/examples/starter/src/components/Logo.astro
blob: ca45ef5296cd50d7aad00d49401b1c86d3bd42c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
---
// 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" />