EF
EF Design System

Icons

The complete SVG icon library. Click any icon to copy its SVG code to your clipboard.

32 icons
tsx
// Using an icon inline
<svg
  width="24"
  height="24"
  viewBox="0 0 24 24"
  fill="none"
  stroke="currentColor"
  strokeWidth={2}
  strokeLinecap="round"
  strokeLinejoin="round"
>
  <polyline points="20 6 9 17 4 12" />
</svg>

// All icons use these shared attributes:
// width="24" height="24" viewBox="0 0 24 24"
// fill="none" stroke="currentColor" stroke-width="2"
// stroke-linecap="round" stroke-linejoin="round"
//
// Color is inherited via currentColor -
// set the parent element's color to change icon color.