Elements

ironpt has some predefined elements. It help you to create presentation quickly. Predefined element's styles are changed by Theme passed to Presentation.

<H1>, <H2>

Header component.

Example

<H1>Main header</H1>
<H2>Sub header</H2>

<P>

Paragraph component.

Example

<P>Paragraph</P>

<Ul>, <Li>

List component.

Example

<Ul>
  <Li>List Item 1</Li>
  <Li>List Item 2</Li>
</Ul>

<Cover>

Cover component.

Example

<Cover>
  <H1>Title of presentation</H1>
  <H2>Sub title</H2>
</Cover>

<Code>

Code component. Support syntax highlight

Props

  • language (String): Language of the code

Example

<Code language='javascript'>
  {`
const a = 1
const b = 2
console.log(a + b)
  `.trim()}
</Code>

results matching ""

    No results matching ""