hypnagaga/src/components/Hero/stories/docs/withCrown.md
2022-08-22 15:17:50 +01:00

498 B

Add a crown image in the crown named slot and override the headline in the hed named slot.

<script>
  import { Headline } from '@reuters-graphics/graphics-components';
  import { assets } from '$app/paths';
</script>

<Headline>
  <!-- Add a crown -->
  <img slot="crown" src="{`${assets}/images/crown.png`}" />
  <!-- Override the hed with a named slot -->
  <h2 slot="hed" class="spaced font-serif">Europa</h2>
  <span slot="dateline">Published Jan. 1, 2020</span>
</Headline>