Open Source

Icon Library

54 carefully crafted icons. Click any icon to copy.

Size24

Showing all 54 icons

How to use

SVG

<svg viewBox="0 0 24 24"
     fill="none"
     stroke="currentColor"
     stroke-width="2">
  <path d="..." />
</svg>

React

const Icon = ({ size = 24 }) => (
  <svg
    width={size}
    height={size}
    viewBox="0 0 24 24"
    ...
  />
)

All icons use a 24×24 viewport with 2px stroke width. They inherit color from their parent via currentColor.