card index emoji

card-index from OpenMoji by OpenMoji · Default · Objects · CC-BY-SA-4.0 Attribution required.

Name
card-index
Set
OpenMoji
Style
Default
Category
Objects
Viewbox
72×72
License
CC BY-SA 4.0

The same emoji in other sets

More objects icons from OpenMoji

Use the card index emoji

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 72 72"><g stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path fill="#ea5a47" d="M18.6 7h5.87a1.57 1.57 0 0 1 1.56 1.57V12h-9V8.57A1.57 1.57 0 0 1 18.6 7"/><path fill="#b1cc33" d="M30 7h5.87a1.57 1.57 0 0 1 1.56 1.57V12h-9V8.57A1.57 1.57 0 0 1 30 7"/><path fill="#92d3f5" d="M45 7h5.87a1.57 1.57 0 0 1 1.56 1.57V12h-9V8.57A1.57 1.57 0 0 1 45 7"/><path fill="#d0cfce" d="M17 12h38v22H17zm0 26h38v22H17z"/></g><g stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path fill="none" d="M18.6 7h5.87a1.57 1.57 0 0 1 1.56 1.57V12h0h-9h0V8.57A1.57 1.57 0 0 1 18.6 7M30 7h5.87a1.57 1.57 0 0 1 1.56 1.57V12h0h-9h0V8.57A1.57 1.57 0 0 1 30 7m15 0h5.87a1.57 1.57 0 0 1 1.56 1.57V12h0h-9h0V8.57A1.57 1.57 0 0 1 45 7m-28 5h38v22H17zm0 26h38v22H17zm11-7v10m16-10v10"/><path d="M12 32h2v8h-2zm46 0h2v8h-2z"/><path fill="none" d="M22 18h10m-10 4h19m-19 4h10"/></g></svg>

React

import type { SVGProps } from "react";

export function OpenmojiCardIndex(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 72 72"><g strokeLinecap="round" strokeLinejoin="round" strokeWidth="2"><path fill="#ea5a47" d="M18.6 7h5.87a1.57 1.57 0 0 1 1.56 1.57V12h-9V8.57A1.57 1.57 0 0 1 18.6 7"/><path fill="#b1cc33" d="M30 7h5.87a1.57 1.57 0 0 1 1.56 1.57V12h-9V8.57A1.57 1.57 0 0 1 30 7"/><path fill="#92d3f5" d="M45 7h5.87a1.57 1.57 0 0 1 1.56 1.57V12h-9V8.57A1.57 1.57 0 0 1 45 7"/><path fill="#d0cfce" d="M17 12h38v22H17zm0 26h38v22H17z"/></g><g stroke="#000" strokeLinecap="round" strokeLinejoin="round" strokeWidth="2"><path fill="none" d="M18.6 7h5.87a1.57 1.57 0 0 1 1.56 1.57V12h0h-9h0V8.57A1.57 1.57 0 0 1 18.6 7M30 7h5.87a1.57 1.57 0 0 1 1.56 1.57V12h0h-9h0V8.57A1.57 1.57 0 0 1 30 7m15 0h5.87a1.57 1.57 0 0 1 1.56 1.57V12h0h-9h0V8.57A1.57 1.57 0 0 1 45 7m-28 5h38v22H17zm0 26h38v22H17zm11-7v10m16-10v10"/><path d="M12 32h2v8h-2zm46 0h2v8h-2z"/><path fill="none" d="M22 18h10m-10 4h19m-19 4h10"/></g></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 72 72"><g stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path fill="#ea5a47" d="M18.6 7h5.87a1.57 1.57 0 0 1 1.56 1.57V12h-9V8.57A1.57 1.57 0 0 1 18.6 7"/><path fill="#b1cc33" d="M30 7h5.87a1.57 1.57 0 0 1 1.56 1.57V12h-9V8.57A1.57 1.57 0 0 1 30 7"/><path fill="#92d3f5" d="M45 7h5.87a1.57 1.57 0 0 1 1.56 1.57V12h-9V8.57A1.57 1.57 0 0 1 45 7"/><path fill="#d0cfce" d="M17 12h38v22H17zm0 26h38v22H17z"/></g><g stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path fill="none" d="M18.6 7h5.87a1.57 1.57 0 0 1 1.56 1.57V12h0h-9h0V8.57A1.57 1.57 0 0 1 18.6 7M30 7h5.87a1.57 1.57 0 0 1 1.56 1.57V12h0h-9h0V8.57A1.57 1.57 0 0 1 30 7m15 0h5.87a1.57 1.57 0 0 1 1.56 1.57V12h0h-9h0V8.57A1.57 1.57 0 0 1 45 7m-28 5h38v22H17zm0 26h38v22H17zm11-7v10m16-10v10"/><path d="M12 32h2v8h-2zm46 0h2v8h-2z"/><path fill="none" d="M22 18h10m-10 4h19m-19 4h10"/></g></svg>
</template>

CSS

.icon-card-index {
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2072%2072%22%3E%3Cg%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%3E%3Cpath%20fill%3D%22%23ea5a47%22%20d%3D%22M18.6%207h5.87a1.57%201.57%200%200%201%201.56%201.57V12h-9V8.57A1.57%201.57%200%200%201%2018.6%207%22%2F%3E%3Cpath%20fill%3D%22%23b1cc33%22%20d%3D%22M30%207h5.87a1.57%201.57%200%200%201%201.56%201.57V12h-9V8.57A1.57%201.57%200%200%201%2030%207%22%2F%3E%3Cpath%20fill%3D%22%2392d3f5%22%20d%3D%22M45%207h5.87a1.57%201.57%200%200%201%201.56%201.57V12h-9V8.57A1.57%201.57%200%200%201%2045%207%22%2F%3E%3Cpath%20fill%3D%22%23d0cfce%22%20d%3D%22M17%2012h38v22H17zm0%2026h38v22H17z%22%2F%3E%3C%2Fg%3E%3Cg%20stroke%3D%22%23000%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M18.6%207h5.87a1.57%201.57%200%200%201%201.56%201.57V12h0h-9h0V8.57A1.57%201.57%200%200%201%2018.6%207M30%207h5.87a1.57%201.57%200%200%201%201.56%201.57V12h0h-9h0V8.57A1.57%201.57%200%200%201%2030%207m15%200h5.87a1.57%201.57%200%200%201%201.56%201.57V12h0h-9h0V8.57A1.57%201.57%200%200%201%2045%207m-28%205h38v22H17zm0%2026h38v22H17zm11-7v10m16-10v10%22%2F%3E%3Cpath%20d%3D%22M12%2032h2v8h-2zm46%200h2v8h-2z%22%2F%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M22%2018h10m-10%204h19m-19%204h10%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2072%2072%22%3E%3Cg%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%3E%3Cpath%20fill%3D%22%23ea5a47%22%20d%3D%22M18.6%207h5.87a1.57%201.57%200%200%201%201.56%201.57V12h-9V8.57A1.57%201.57%200%200%201%2018.6%207%22%2F%3E%3Cpath%20fill%3D%22%23b1cc33%22%20d%3D%22M30%207h5.87a1.57%201.57%200%200%201%201.56%201.57V12h-9V8.57A1.57%201.57%200%200%201%2030%207%22%2F%3E%3Cpath%20fill%3D%22%2392d3f5%22%20d%3D%22M45%207h5.87a1.57%201.57%200%200%201%201.56%201.57V12h-9V8.57A1.57%201.57%200%200%201%2045%207%22%2F%3E%3Cpath%20fill%3D%22%23d0cfce%22%20d%3D%22M17%2012h38v22H17zm0%2026h38v22H17z%22%2F%3E%3C%2Fg%3E%3Cg%20stroke%3D%22%23000%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M18.6%207h5.87a1.57%201.57%200%200%201%201.56%201.57V12h0h-9h0V8.57A1.57%201.57%200%200%201%2018.6%207M30%207h5.87a1.57%201.57%200%200%201%201.56%201.57V12h0h-9h0V8.57A1.57%201.57%200%200%201%2030%207m15%200h5.87a1.57%201.57%200%200%201%201.56%201.57V12h0h-9h0V8.57A1.57%201.57%200%200%201%2045%207m-28%205h38v22H17zm0%2026h38v22H17zm11-7v10m16-10v10%22%2F%3E%3Cpath%20d%3D%22M12%2032h2v8h-2zm46%200h2v8h-2z%22%2F%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M22%2018h10m-10%204h19m-19%204h10%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/openmoji/card-index.svg?color=%231a73e8&size=48