forstok-ui-lib 6.19.1 → 6.19.2
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/dist/index.js +33 -33
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/images/icons/arrow-down.svg +8 -0
- package/src/components/icon/styles.ts +8 -0
package/package.json
CHANGED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
4
|
+
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 451.847 451.847" xml:space="preserve" style="fill: #4e4e4e;">
|
|
5
|
+
<path d="M225.923,354.706c-8.098,0-16.195-3.092-22.369-9.263L9.27,151.157c-12.359-12.359-12.359-32.397,0-44.751
|
|
6
|
+
c12.354-12.354,32.388-12.354,44.748,0l171.905,171.915l171.906-171.909c12.359-12.354,32.391-12.354,44.744,0
|
|
7
|
+
c12.365,12.354,12.365,32.392,0,44.751L248.292,345.449C242.115,351.621,234.018,354.706,225.923,354.706z"/>
|
|
8
|
+
</svg>
|
|
@@ -21,6 +21,7 @@ import IconNotificationUpload from '../../assets/images/icons/notif-upload-white
|
|
|
21
21
|
import IconBar from '../../assets/images/icons/humberbars.svg'
|
|
22
22
|
import IconClose from '../../assets/images/icons/close.svg'
|
|
23
23
|
import IconArrow from '../../assets/images/icons/arrow.svg'
|
|
24
|
+
import IconArrowDown from '../../assets/images/icons/arrow-down.svg'
|
|
24
25
|
import IconDiscount from '../../assets/images/icons/discount.svg'
|
|
25
26
|
import IconCash from '../../assets/images/icons/cash.svg'
|
|
26
27
|
import IconCredit from '../../assets/images/icons/credit.svg'
|
|
@@ -281,6 +282,13 @@ const getIconContainerStyled = ({ $mode, $name, $width, onClick }:{ $mode?: stri
|
|
|
281
282
|
}
|
|
282
283
|
`
|
|
283
284
|
break;
|
|
285
|
+
case 'arrow-down':
|
|
286
|
+
style += `
|
|
287
|
+
&:before {
|
|
288
|
+
content: url(${IconArrowDown});
|
|
289
|
+
}
|
|
290
|
+
`
|
|
291
|
+
break;
|
|
284
292
|
case 'calendar':
|
|
285
293
|
style += `
|
|
286
294
|
&:before {
|