@designcrowd/fe-shared-lib 1.5.13 → 1.5.14-kp-1
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/.storybook-static/css/tailwind-brandCrowd.css +2472 -0
- package/.storybook-static/css/tailwind-brandPage.css +2156 -0
- package/.storybook-static/css/tailwind-crazyDomains.css +2472 -0
- package/.storybook-static/css/tailwind-designCom.css +2472 -0
- package/.storybook-static/css/tailwind-designCrowd.css +2472 -0
- package/.storybook-static/favicon.svg +1 -0
- package/.storybook-static/index.html +156 -0
- package/.storybook-static/index.json +1 -0
- package/.storybook-static/nunito-sans-bold-italic.woff2 +0 -0
- package/.storybook-static/nunito-sans-bold.woff2 +0 -0
- package/.storybook-static/nunito-sans-italic.woff2 +0 -0
- package/.storybook-static/nunito-sans-regular.woff2 +0 -0
- package/.storybook-static/project.json +1 -0
- package/.storybook-static/sb-addons/a11y-1/manager-bundle.js +5 -0
- package/.storybook-static/sb-addons/links-2/manager-bundle.js +3 -0
- package/.storybook-static/sb-addons/storybook-core-server-presets-0/common-manager-bundle.js +188 -0
- package/.storybook-static/sb-addons/themes-3/manager-bundle.js +3 -0
- package/.storybook-static/sb-common-assets/favicon.svg +1 -0
- package/.storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
- package/.storybook-static/sb-common-assets/nunito-sans-bold.woff2 +0 -0
- package/.storybook-static/sb-common-assets/nunito-sans-italic.woff2 +0 -0
- package/.storybook-static/sb-common-assets/nunito-sans-regular.woff2 +0 -0
- package/.storybook-static/sb-manager/globals-module-info.js +797 -0
- package/.storybook-static/sb-manager/globals-runtime.js +72062 -0
- package/.storybook-static/sb-manager/globals.js +34 -0
- package/.storybook-static/sb-manager/runtime.js +13002 -0
- package/package.json +1 -1
- package/public/css/tailwind-brandCrowd.css +2504 -0
- package/public/css/tailwind-brandPage.css +2184 -0
- package/public/css/tailwind-crazyDomains.css +2504 -0
- package/public/css/tailwind-designCom.css +2504 -0
- package/public/css/tailwind-designCrowd.css +2504 -0
- package/src/atoms/components/Icon/Icon.stories.js +1 -0
- package/src/atoms/components/Icon/Icon.vue +2 -0
- package/src/atoms/components/Icon/icons/page-blank.vue +6 -0
|
@@ -39,6 +39,7 @@ import IconAspectRatio9_16 from './icons/ratio-9-16.vue';
|
|
|
39
39
|
/* eslint-enable camelcase */
|
|
40
40
|
import IconAbout from './icons/about.vue';
|
|
41
41
|
import IconAddPage from './icons/add-page.vue';
|
|
42
|
+
import IconPageBlank from './icons/page-blank.vue';
|
|
42
43
|
import IconAi from './icons/ai.vue';
|
|
43
44
|
import IconArrowDown from './icons/arrow-down.vue';
|
|
44
45
|
import IconArrowLeft from './icons/arrow-left.vue';
|
|
@@ -423,6 +424,7 @@ export default {
|
|
|
423
424
|
IconCalculator,
|
|
424
425
|
IconAbout,
|
|
425
426
|
IconAddPage,
|
|
427
|
+
IconPageBlank,
|
|
426
428
|
IconAi,
|
|
427
429
|
IconArrowDown,
|
|
428
430
|
IconArrowLeft,
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<path
|
|
3
|
+
d="M12.8172 3.67969C13.0724 3.9349 13.2 4.24479 13.2 4.60938V13.6875C13.2 14.0521 13.0724 14.362 12.8172 14.6172C12.562 14.8724 12.2521 15 11.8875 15H4.0125C3.64792 15 3.33802 14.8724 3.08281 14.6172C2.8276 14.362 2.7 14.0521 2.7 13.6875V2.3125C2.7 1.94792 2.8276 1.63802 3.08281 1.38281C3.33802 1.1276 3.64792 1 4.0125 1H9.59063C9.95521 1 10.2651 1.1276 10.5203 1.38281L12.8172 3.67969ZM9.7 2.42188V4.5H11.7781L9.7 2.42188ZM11.8875 13.6875V5.8125H9.04375C8.86146 5.8125 8.70651 5.7487 8.57891 5.62109C8.4513 5.49349 8.3875 5.33854 8.3875 5.15625V2.3125H4.0125V13.6875H11.8875Z"
|
|
4
|
+
fill-rule="nonzero"
|
|
5
|
+
/>
|
|
6
|
+
</template>
|