@charcoal-ui/icons 5.11.1 → 5.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/v1/index.css +10 -0
- package/css/v1/index.html +9 -0
- package/css/v1/index.story.tsx +10 -1
- package/package.json +2 -2
- package/react/v1/16/Description.d.ts +4 -0
- package/react/v1/16/Description.d.ts.map +1 -0
- package/react/v1/16/Description.js +5 -0
- package/react/v1/index.d.ts +1 -0
- package/react/v1/index.d.ts.map +1 -1
- package/react/v1/index.js +1 -0
- package/src/react/v1/16/Description.tsx +28 -0
- package/src/react/v1/index.story.tsx +6 -0
- package/src/react/v1/index.tsx +1 -0
package/css/v1/index.css
CHANGED
|
@@ -658,6 +658,16 @@
|
|
|
658
658
|
aspect-ratio: 1/1;
|
|
659
659
|
}
|
|
660
660
|
|
|
661
|
+
.charcoal-icon-v1-description-16 {
|
|
662
|
+
display: inline-block;
|
|
663
|
+
width: 1em;
|
|
664
|
+
height: 1em;
|
|
665
|
+
mask-image: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12.707%205.207a1%201%200%2001.293.707V12a2%202%200%2001-2%202H5a2%202%200%2001-2-2V4a2%202%200%20012-2h4.086a1%201%200%2001.707.293l2.914%202.914zM6%2010a.5.5%200%20000%201h4a.5.5%200%20000-1H6zm0-2a.5.5%200%20000%201h4a.5.5%200%20000-1H6zm2.5-2.5a1%201%200%20001%201H12L8.5%203v2.5z%22%20fill%3D%22currentColor%22%2F%3E%3C%2Fsvg%3E');
|
|
666
|
+
mask-size: 100% 100%;
|
|
667
|
+
background: currentColor;
|
|
668
|
+
aspect-ratio: 1/1;
|
|
669
|
+
}
|
|
670
|
+
|
|
661
671
|
.charcoal-icon-v1-devicerotation {
|
|
662
672
|
display: inline-block;
|
|
663
673
|
width: 1em;
|
package/css/v1/index.html
CHANGED
|
@@ -611,6 +611,15 @@
|
|
|
611
611
|
<code>.charcoal-icon-v1-description</code>
|
|
612
612
|
</div>
|
|
613
613
|
|
|
614
|
+
<div>
|
|
615
|
+
<div
|
|
616
|
+
class="charcoal-icon-v1-description-16"
|
|
617
|
+
aria-label=".charcoal-icon-v1-description-16"
|
|
618
|
+
role="img"
|
|
619
|
+
></div>
|
|
620
|
+
<code>.charcoal-icon-v1-description-16</code>
|
|
621
|
+
</div>
|
|
622
|
+
|
|
614
623
|
<div>
|
|
615
624
|
<div
|
|
616
625
|
class="charcoal-icon-v1-devicerotation"
|