Examples of Vlocity/SF LWC components (in various states of working)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
1.1 KiB

  1. <template>
  2. <article class="nds-card">
  3. <div class="nds-card__header nds-grid">
  4. <header class="nds-media nds-media_center nds-has-flexi-truncate">
  5. <div class="nds-media__figure">
  6. <span class="nds-icon_container nds-icon-standard-contact" title="description of icon when needed">
  7. <svg class="nds-icon nds-icon_small" aria-hidden="true">
  8. <use xlink:href="/assets/icons/standard-sprite/svg/symbols.svg#contact"></use>
  9. </svg>
  10. </span>
  11. </div>
  12. <div class="nds-media__body">
  13. <h2>
  14. <a href="javascript:void(0);" class="nds-card__header-link nds-truncate" title={title}>
  15. <span class="nds-text-heading_small">{title}</span>
  16. </a>
  17. </h2>
  18. </div>
  19. </header>
  20. </div>
  21. <div class="nds-card__body nds-card__body_inner">{body}</div>
  22. </article>
  23. </template>