To be used with Open Graph Generator Image Action
This webcomponent follows the open-wc recommendation.
npm i og-image-element<script type="module">
  import 'og-image-element/og-image-element.js';
</script>
<og-image-element>
  <div slot="title">Title of the Post</div>
  <img slot="image" src="url to image" />
</og-image-element>You can customise styling with CSS variables:
og-image-element {
  --heading-font: 'Aleo', serif;
  --background: #ffffff;
  --font-color: #000000;
  --font-size: 100%;
}npm run testnpm run storybooknpm run lint