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