reddit-2-line from Remix Icon by Remix Design · Line · Apache-2.0 Free for personal and commercial use.

Name
reddit-2-line
Set
Remix Icon
Style
Line
Viewbox
24×24
License
Apache 2.0

1 other variant in Remix Icon

Use the reddit 2 icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M16.597 2.287a2.08 2.08 0 1 1-2.023 2.562a2.48 2.48 0 0 0-1.942 1.47c1.722.087 3.329.533 4.686 1.255a3.9 3.9 0 0 1 1.809-.443l.202.005a3.936 3.936 0 0 1 3.733 3.93a3.92 3.92 0 0 1-1.726 3.25c-.233 1.84-1.327 3.43-2.867 4.564c-1.699 1.25-3.983 1.994-6.462 1.994c-2.477 0-4.76-.742-6.458-1.991c-1.54-1.132-2.635-2.719-2.87-4.556a3.92 3.92 0 0 1-1.741-3.26A3.937 3.937 0 0 1 4.874 7.13l.337.015a3.9 3.9 0 0 1 1.476.432c1.437-.765 3.152-1.222 4.989-1.271A3.39 3.39 0 0 1 14.56 3.94a2.08 2.08 0 0 1 2.037-1.653m-4.59 6.015c-1.857 0-3.534.496-4.816 1.292l-.588.366l-.55-.424a1.9 1.9 0 0 0-1.015-.398l-.164-.007c-1.07 0-1.936.867-1.936 1.935c0 .724.398 1.356.995 1.689l.122.062l.557.262l.018.615c.037 1.328.779 2.603 2.103 3.577s3.183 1.603 5.274 1.603s3.952-.63 5.276-1.604c1.324-.976 2.065-2.252 2.1-3.58l.017-.614l.554-.264a1.933 1.933 0 0 0-.629-3.671l-.198-.01a1.92 1.92 0 0 0-1.176.401l-.549.421l-.587-.364c-1.28-.793-2.955-1.287-4.808-1.287m0 6.949c1.02 0 1.996.05 2.9.142a.232.232 0 0 1 .193.319a3.352 3.352 0 0 1-6.186 0a.232.232 0 0 1 .191-.32a29 29 0 0 1 2.902-.141m-3.88-4.202c.824 0 1.451.882 1.402 1.94c-.049 1.056-.755 1.44-1.578 1.44s-1.45-.575-1.402-1.631s.756-1.75 1.579-1.75m7.76 0c.823 0 1.529.692 1.578 1.749s-.579 1.63-1.401 1.63s-1.53-.384-1.579-1.44c-.048-1.058.579-1.939 1.402-1.94"/></svg>

React

import type { SVGProps } from "react";

export function RiReddit2Line(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M16.597 2.287a2.08 2.08 0 1 1-2.023 2.562a2.48 2.48 0 0 0-1.942 1.47c1.722.087 3.329.533 4.686 1.255a3.9 3.9 0 0 1 1.809-.443l.202.005a3.936 3.936 0 0 1 3.733 3.93a3.92 3.92 0 0 1-1.726 3.25c-.233 1.84-1.327 3.43-2.867 4.564c-1.699 1.25-3.983 1.994-6.462 1.994c-2.477 0-4.76-.742-6.458-1.991c-1.54-1.132-2.635-2.719-2.87-4.556a3.92 3.92 0 0 1-1.741-3.26A3.937 3.937 0 0 1 4.874 7.13l.337.015a3.9 3.9 0 0 1 1.476.432c1.437-.765 3.152-1.222 4.989-1.271A3.39 3.39 0 0 1 14.56 3.94a2.08 2.08 0 0 1 2.037-1.653m-4.59 6.015c-1.857 0-3.534.496-4.816 1.292l-.588.366l-.55-.424a1.9 1.9 0 0 0-1.015-.398l-.164-.007c-1.07 0-1.936.867-1.936 1.935c0 .724.398 1.356.995 1.689l.122.062l.557.262l.018.615c.037 1.328.779 2.603 2.103 3.577s3.183 1.603 5.274 1.603s3.952-.63 5.276-1.604c1.324-.976 2.065-2.252 2.1-3.58l.017-.614l.554-.264a1.933 1.933 0 0 0-.629-3.671l-.198-.01a1.92 1.92 0 0 0-1.176.401l-.549.421l-.587-.364c-1.28-.793-2.955-1.287-4.808-1.287m0 6.949c1.02 0 1.996.05 2.9.142a.232.232 0 0 1 .193.319a3.352 3.352 0 0 1-6.186 0a.232.232 0 0 1 .191-.32a29 29 0 0 1 2.902-.141m-3.88-4.202c.824 0 1.451.882 1.402 1.94c-.049 1.056-.755 1.44-1.578 1.44s-1.45-.575-1.402-1.631s.756-1.75 1.579-1.75m7.76 0c.823 0 1.529.692 1.578 1.749s-.579 1.63-1.401 1.63s-1.53-.384-1.579-1.44c-.048-1.058.579-1.939 1.402-1.94"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M16.597 2.287a2.08 2.08 0 1 1-2.023 2.562a2.48 2.48 0 0 0-1.942 1.47c1.722.087 3.329.533 4.686 1.255a3.9 3.9 0 0 1 1.809-.443l.202.005a3.936 3.936 0 0 1 3.733 3.93a3.92 3.92 0 0 1-1.726 3.25c-.233 1.84-1.327 3.43-2.867 4.564c-1.699 1.25-3.983 1.994-6.462 1.994c-2.477 0-4.76-.742-6.458-1.991c-1.54-1.132-2.635-2.719-2.87-4.556a3.92 3.92 0 0 1-1.741-3.26A3.937 3.937 0 0 1 4.874 7.13l.337.015a3.9 3.9 0 0 1 1.476.432c1.437-.765 3.152-1.222 4.989-1.271A3.39 3.39 0 0 1 14.56 3.94a2.08 2.08 0 0 1 2.037-1.653m-4.59 6.015c-1.857 0-3.534.496-4.816 1.292l-.588.366l-.55-.424a1.9 1.9 0 0 0-1.015-.398l-.164-.007c-1.07 0-1.936.867-1.936 1.935c0 .724.398 1.356.995 1.689l.122.062l.557.262l.018.615c.037 1.328.779 2.603 2.103 3.577s3.183 1.603 5.274 1.603s3.952-.63 5.276-1.604c1.324-.976 2.065-2.252 2.1-3.58l.017-.614l.554-.264a1.933 1.933 0 0 0-.629-3.671l-.198-.01a1.92 1.92 0 0 0-1.176.401l-.549.421l-.587-.364c-1.28-.793-2.955-1.287-4.808-1.287m0 6.949c1.02 0 1.996.05 2.9.142a.232.232 0 0 1 .193.319a3.352 3.352 0 0 1-6.186 0a.232.232 0 0 1 .191-.32a29 29 0 0 1 2.902-.141m-3.88-4.202c.824 0 1.451.882 1.402 1.94c-.049 1.056-.755 1.44-1.578 1.44s-1.45-.575-1.402-1.631s.756-1.75 1.579-1.75m7.76 0c.823 0 1.529.692 1.578 1.749s-.579 1.63-1.401 1.63s-1.53-.384-1.579-1.44c-.048-1.058.579-1.939 1.402-1.94"/></svg>
</template>

CSS

.icon-reddit-2-line {
  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%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M16.597%202.287a2.08%202.08%200%201%201-2.023%202.562a2.48%202.48%200%200%200-1.942%201.47c1.722.087%203.329.533%204.686%201.255a3.9%203.9%200%200%201%201.809-.443l.202.005a3.936%203.936%200%200%201%203.733%203.93a3.92%203.92%200%200%201-1.726%203.25c-.233%201.84-1.327%203.43-2.867%204.564c-1.699%201.25-3.983%201.994-6.462%201.994c-2.477%200-4.76-.742-6.458-1.991c-1.54-1.132-2.635-2.719-2.87-4.556a3.92%203.92%200%200%201-1.741-3.26A3.937%203.937%200%200%201%204.874%207.13l.337.015a3.9%203.9%200%200%201%201.476.432c1.437-.765%203.152-1.222%204.989-1.271A3.39%203.39%200%200%201%2014.56%203.94a2.08%202.08%200%200%201%202.037-1.653m-4.59%206.015c-1.857%200-3.534.496-4.816%201.292l-.588.366l-.55-.424a1.9%201.9%200%200%200-1.015-.398l-.164-.007c-1.07%200-1.936.867-1.936%201.935c0%20.724.398%201.356.995%201.689l.122.062l.557.262l.018.615c.037%201.328.779%202.603%202.103%203.577s3.183%201.603%205.274%201.603s3.952-.63%205.276-1.604c1.324-.976%202.065-2.252%202.1-3.58l.017-.614l.554-.264a1.933%201.933%200%200%200-.629-3.671l-.198-.01a1.92%201.92%200%200%200-1.176.401l-.549.421l-.587-.364c-1.28-.793-2.955-1.287-4.808-1.287m0%206.949c1.02%200%201.996.05%202.9.142a.232.232%200%200%201%20.193.319a3.352%203.352%200%200%201-6.186%200a.232.232%200%200%201%20.191-.32a29%2029%200%200%201%202.902-.141m-3.88-4.202c.824%200%201.451.882%201.402%201.94c-.049%201.056-.755%201.44-1.578%201.44s-1.45-.575-1.402-1.631s.756-1.75%201.579-1.75m7.76%200c.823%200%201.529.692%201.578%201.749s-.579%201.63-1.401%201.63s-1.53-.384-1.579-1.44c-.048-1.058.579-1.939%201.402-1.94%22%2F%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%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M16.597%202.287a2.08%202.08%200%201%201-2.023%202.562a2.48%202.48%200%200%200-1.942%201.47c1.722.087%203.329.533%204.686%201.255a3.9%203.9%200%200%201%201.809-.443l.202.005a3.936%203.936%200%200%201%203.733%203.93a3.92%203.92%200%200%201-1.726%203.25c-.233%201.84-1.327%203.43-2.867%204.564c-1.699%201.25-3.983%201.994-6.462%201.994c-2.477%200-4.76-.742-6.458-1.991c-1.54-1.132-2.635-2.719-2.87-4.556a3.92%203.92%200%200%201-1.741-3.26A3.937%203.937%200%200%201%204.874%207.13l.337.015a3.9%203.9%200%200%201%201.476.432c1.437-.765%203.152-1.222%204.989-1.271A3.39%203.39%200%200%201%2014.56%203.94a2.08%202.08%200%200%201%202.037-1.653m-4.59%206.015c-1.857%200-3.534.496-4.816%201.292l-.588.366l-.55-.424a1.9%201.9%200%200%200-1.015-.398l-.164-.007c-1.07%200-1.936.867-1.936%201.935c0%20.724.398%201.356.995%201.689l.122.062l.557.262l.018.615c.037%201.328.779%202.603%202.103%203.577s3.183%201.603%205.274%201.603s3.952-.63%205.276-1.604c1.324-.976%202.065-2.252%202.1-3.58l.017-.614l.554-.264a1.933%201.933%200%200%200-.629-3.671l-.198-.01a1.92%201.92%200%200%200-1.176.401l-.549.421l-.587-.364c-1.28-.793-2.955-1.287-4.808-1.287m0%206.949c1.02%200%201.996.05%202.9.142a.232.232%200%200%201%20.193.319a3.352%203.352%200%200%201-6.186%200a.232.232%200%200%201%20.191-.32a29%2029%200%200%201%202.902-.141m-3.88-4.202c.824%200%201.451.882%201.402%201.94c-.049%201.056-.755%201.44-1.578%201.44s-1.45-.575-1.402-1.631s.756-1.75%201.579-1.75m7.76%200c.823%200%201.529.692%201.578%201.749s-.579%201.63-1.401%201.63s-1.53-.384-1.579-1.44c-.048-1.058.579-1.939%201.402-1.94%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/ri/reddit-2-line.svg?color=%231a73e8&size=48