Add new typography icon to the DS (#6808)

Signed-off-by: Kelp <5446186+NatachaMenjibar@users.noreply.github.com>
This commit is contained in:
Kelp 2025-06-30 11:06:54 +02:00 committed by GitHub
parent 8dcb376b18
commit b893a62e40
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" stroke-linecap="round" stroke-linejoin="round">
<path d="m12.805 13.5-1.269-2.88m0 0H6.971m4.565 0L9.593 6.209a.367.367 0 0 0-.679 0l-1.943 4.413m0 0L5.703 13.5m-.698 0h1.672m5.151 0h1.673M3.58 6.167 2.5 8.347m1.083-2.18h3.5l.048-.074-1.58-3.416a.288.288 0 0 0-.532 0l-1.436 3.49Z" />
</svg>

After

Width:  |  Height:  |  Size: 356 B

View file

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" stroke-linecap="round" stroke-linejoin="round">
<path d="M4.374 7.625h3.994c.53 0 1.038-.217 1.412-.604.375-.387.585-.911.585-1.458 0-.548-.21-1.072-.585-1.459A1.966 1.966 0 0 0 8.368 3.5H4.374v4.125Zm0 0h5.02c.593 0 1.16.257 1.579.714.418.457.653 1.077.653 1.723 0 .647-.235 1.267-.653 1.724a2.14 2.14 0 0 1-1.578.714H4.374V7.625Z"/>
</svg>

After

Width:  |  Height:  |  Size: 404 B

View file

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" stroke-linecap="round" stroke-linejoin="round">
<path stroke="currentColor" stroke-linecap="round" d="M11 6.125V5H8m0 0H5v1.125M8 5v6m0 0h1.125M8 11H6.875M1.5 3.45c0-1.075.875-1.95 1.95-1.95h9.1c1.075 0 1.95.875 1.95 1.95v9.1c0 1.075-.874 1.95-1.95 1.95h-9.1a1.952 1.952 0 0 1-1.95-1.95v-9.1Z"/>
</svg>

After

Width:  |  Height:  |  Size: 365 B

View file

@ -260,7 +260,9 @@
(def ^:icon-id text-auto-width "text-auto-width")
(def ^:icon-id text-bottom "text-bottom")
(def ^:icon-id text-fixed "text-fixed")
(def ^:icon-id text-font-family "text-font-family")
(def ^:icon-id text-font-size "text-font-size")
(def ^:icon-id text-font-weight "text-font-weight")
(def ^:icon-id text-justify "text-justify")
(def ^:icon-id text-letterspacing "text-letterspacing")
(def ^:icon-id text-lineheight "text-lineheight")
@ -273,6 +275,7 @@
(def ^:icon-id text-rtl "text-rtl")
(def ^:icon-id text-stroked "text-stroked")
(def ^:icon-id text-top "text-top")
(def ^:icon-id text-typography "text-typography")
(def ^:icon-id text-underlined "text-underlined")
(def ^:icon-id text-uppercase "text-uppercase")
(def ^:icon-id thumbnail "thumbnail")

View file

@ -240,7 +240,9 @@
(def ^:icon text-auto-width (icon-xref :text-auto-width))
(def ^:icon text-bottom (icon-xref :text-bottom))
(def ^:icon text-fixed (icon-xref :text-fixed))
(def ^:icon text-font-family (icon-xref :text-font-family))
(def ^:icon text-font-size (icon-xref :text-font-size))
(def ^:icon text-font-weight (icon-xref :text-font-weight))
(def ^:icon text-justify (icon-xref :text-justify))
(def ^:icon text-letterspacing (icon-xref :text-letterspacing))
(def ^:icon text-lineheight (icon-xref :text-lineheight))
@ -253,6 +255,7 @@
(def ^:icon text-rtl (icon-xref :text-rtl))
(def ^:icon text-stroked (icon-xref :text-stroked))
(def ^:icon text-top (icon-xref :text-top))
(def ^:icon text-typography (icon-xref :text-typography))
(def ^:icon text-underlined (icon-xref :text-underlined))
(def ^:icon text-uppercase (icon-xref :text-uppercase))
(def ^:icon thumbnail (icon-xref :thumbnail))