text bold square icon

text-bold-square-bold from Solar by 480 Design · Bold · Text Formatting · CC-BY-4.0 Attribution required.

Name
text-bold-square-bold
Set
Solar
Style
Bold
Category
Text Formatting
Viewbox
24×24
License
CC BY 4.0

5 other variants in Solar

More text formatting icons from Solar

Use the text bold square icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><path d="M14.25 9C14.25 10.2426 13.2426 11.25 12 11.25H8.75V7.52174C8.75 7.09552 9.09552 6.75 9.52174 6.75H12C13.2426 6.75 14.25 7.75736 14.25 9Z"/><path d="M8.75 16.8235V12.75H13C14.2426 12.75 15.25 13.7574 15.25 15C15.25 16.2426 14.2426 17.25 13 17.25H9.17647C8.94094 17.25 8.75 17.0591 8.75 16.8235Z"/><path fill-rule="evenodd" d="M3.46447 3.46447C2 4.92893 2 7.28595 2 12C2 16.714 2 19.0711 3.46447 20.5355C4.92893 22 7.28595 22 12 22C16.714 22 19.0711 22 20.5355 20.5355C22 19.0711 22 16.714 22 12C22 7.28595 22 4.92893 20.5355 3.46447C19.0711 2 16.714 2 12 2C7.28595 2 4.92893 2 3.46447 3.46447ZM7.25 7.52174C7.25 6.26709 8.26709 5.25 9.52174 5.25H12C14.0711 5.25 15.75 6.92893 15.75 9C15.75 10.029 15.3356 10.9612 14.6645 11.6387C15.9004 12.2519 16.75 13.5268 16.75 15C16.75 17.0711 15.0711 18.75 13 18.75H9.17647C8.11251 18.75 7.25 17.8875 7.25 16.8235V7.52174Z" clip-rule="evenodd"/></g></svg>

React

import type { SVGProps } from "react";

export function SolarTextBoldSquareBold(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><path d="M14.25 9C14.25 10.2426 13.2426 11.25 12 11.25H8.75V7.52174C8.75 7.09552 9.09552 6.75 9.52174 6.75H12C13.2426 6.75 14.25 7.75736 14.25 9Z"/><path d="M8.75 16.8235V12.75H13C14.2426 12.75 15.25 13.7574 15.25 15C15.25 16.2426 14.2426 17.25 13 17.25H9.17647C8.94094 17.25 8.75 17.0591 8.75 16.8235Z"/><path fillRule="evenodd" d="M3.46447 3.46447C2 4.92893 2 7.28595 2 12C2 16.714 2 19.0711 3.46447 20.5355C4.92893 22 7.28595 22 12 22C16.714 22 19.0711 22 20.5355 20.5355C22 19.0711 22 16.714 22 12C22 7.28595 22 4.92893 20.5355 3.46447C19.0711 2 16.714 2 12 2C7.28595 2 4.92893 2 3.46447 3.46447ZM7.25 7.52174C7.25 6.26709 8.26709 5.25 9.52174 5.25H12C14.0711 5.25 15.75 6.92893 15.75 9C15.75 10.029 15.3356 10.9612 14.6645 11.6387C15.9004 12.2519 16.75 13.5268 16.75 15C16.75 17.0711 15.0711 18.75 13 18.75H9.17647C8.11251 18.75 7.25 17.8875 7.25 16.8235V7.52174Z" clipRule="evenodd"/></g></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><path d="M14.25 9C14.25 10.2426 13.2426 11.25 12 11.25H8.75V7.52174C8.75 7.09552 9.09552 6.75 9.52174 6.75H12C13.2426 6.75 14.25 7.75736 14.25 9Z"/><path d="M8.75 16.8235V12.75H13C14.2426 12.75 15.25 13.7574 15.25 15C15.25 16.2426 14.2426 17.25 13 17.25H9.17647C8.94094 17.25 8.75 17.0591 8.75 16.8235Z"/><path fill-rule="evenodd" d="M3.46447 3.46447C2 4.92893 2 7.28595 2 12C2 16.714 2 19.0711 3.46447 20.5355C4.92893 22 7.28595 22 12 22C16.714 22 19.0711 22 20.5355 20.5355C22 19.0711 22 16.714 22 12C22 7.28595 22 4.92893 20.5355 3.46447C19.0711 2 16.714 2 12 2C7.28595 2 4.92893 2 3.46447 3.46447ZM7.25 7.52174C7.25 6.26709 8.26709 5.25 9.52174 5.25H12C14.0711 5.25 15.75 6.92893 15.75 9C15.75 10.029 15.3356 10.9612 14.6645 11.6387C15.9004 12.2519 16.75 13.5268 16.75 15C16.75 17.0711 15.0711 18.75 13 18.75H9.17647C8.11251 18.75 7.25 17.8875 7.25 16.8235V7.52174Z" clip-rule="evenodd"/></g></svg>
</template>

CSS

.icon-text-bold-square-bold {
  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%3Cg%20fill%3D%22currentColor%22%3E%3Cpath%20d%3D%22M14.25%209C14.25%2010.2426%2013.2426%2011.25%2012%2011.25H8.75V7.52174C8.75%207.09552%209.09552%206.75%209.52174%206.75H12C13.2426%206.75%2014.25%207.75736%2014.25%209Z%22%2F%3E%3Cpath%20d%3D%22M8.75%2016.8235V12.75H13C14.2426%2012.75%2015.25%2013.7574%2015.25%2015C15.25%2016.2426%2014.2426%2017.25%2013%2017.25H9.17647C8.94094%2017.25%208.75%2017.0591%208.75%2016.8235Z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M3.46447%203.46447C2%204.92893%202%207.28595%202%2012C2%2016.714%202%2019.0711%203.46447%2020.5355C4.92893%2022%207.28595%2022%2012%2022C16.714%2022%2019.0711%2022%2020.5355%2020.5355C22%2019.0711%2022%2016.714%2022%2012C22%207.28595%2022%204.92893%2020.5355%203.46447C19.0711%202%2016.714%202%2012%202C7.28595%202%204.92893%202%203.46447%203.46447ZM7.25%207.52174C7.25%206.26709%208.26709%205.25%209.52174%205.25H12C14.0711%205.25%2015.75%206.92893%2015.75%209C15.75%2010.029%2015.3356%2010.9612%2014.6645%2011.6387C15.9004%2012.2519%2016.75%2013.5268%2016.75%2015C16.75%2017.0711%2015.0711%2018.75%2013%2018.75H9.17647C8.11251%2018.75%207.25%2017.8875%207.25%2016.8235V7.52174Z%22%20clip-rule%3D%22evenodd%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%2024%2024%22%3E%3Cg%20fill%3D%22currentColor%22%3E%3Cpath%20d%3D%22M14.25%209C14.25%2010.2426%2013.2426%2011.25%2012%2011.25H8.75V7.52174C8.75%207.09552%209.09552%206.75%209.52174%206.75H12C13.2426%206.75%2014.25%207.75736%2014.25%209Z%22%2F%3E%3Cpath%20d%3D%22M8.75%2016.8235V12.75H13C14.2426%2012.75%2015.25%2013.7574%2015.25%2015C15.25%2016.2426%2014.2426%2017.25%2013%2017.25H9.17647C8.94094%2017.25%208.75%2017.0591%208.75%2016.8235Z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M3.46447%203.46447C2%204.92893%202%207.28595%202%2012C2%2016.714%202%2019.0711%203.46447%2020.5355C4.92893%2022%207.28595%2022%2012%2022C16.714%2022%2019.0711%2022%2020.5355%2020.5355C22%2019.0711%2022%2016.714%2022%2012C22%207.28595%2022%204.92893%2020.5355%203.46447C19.0711%202%2016.714%202%2012%202C7.28595%202%204.92893%202%203.46447%203.46447ZM7.25%207.52174C7.25%206.26709%208.26709%205.25%209.52174%205.25H12C14.0711%205.25%2015.75%206.92893%2015.75%209C15.75%2010.029%2015.3356%2010.9612%2014.6645%2011.6387C15.9004%2012.2519%2016.75%2013.5268%2016.75%2015C16.75%2017.0711%2015.0711%2018.75%2013%2018.75H9.17647C8.11251%2018.75%207.25%2017.8875%207.25%2016.8235V7.52174Z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/solar/text-bold-square-bold.svg?color=%231a73e8&size=48