# ExperienceCard

Render a single experience or role entry. The perfect way to humblebrag about your past jobs.

## Notes

- Pass only trusted HTML to description. We don't want any XSS attacks in our resumes.
- Use concise role and company labels.
- Keep long narrative or markdown outside the card. Save the life story for the interview.



## Example

```astro
<ExperienceCard logo="/logos/example-corp.svg" logoAlt="Example Corp logo" title="Senior Engineer" company="Example Corp" description={trustedDescriptionHtml} start="2023-01" end="present">
  <SkillIcon slot="skills" name="typescript" label="TypeScript" />
  <SkillIcon slot="skills" name="astro" label="Astro" />
</ExperienceCard>
```
