asma-ui-icons 0.3.7 → 0.4.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/dist/components/icons/arrow-shrink-icon/ArrowShrinkIcon.js +16 -0
- package/dist/components/icons/arrow-shrink-icon/index.js +1 -0
- package/dist/components/icons/indeterminate-icon/IndeterminateIcon.js +17 -0
- package/dist/components/icons/indeterminate-icon/index.js +1 -0
- package/dist/components/icons/index.js +3 -0
- package/dist/components/icons/manage-search-icon/ManageSearchIcon.js +15 -0
- package/dist/index.js +4 -1
- package/dist/src/components/icons/arrow-shrink-icon/ArrowShrinkIcon.d.ts +2 -0
- package/dist/src/components/icons/arrow-shrink-icon/index.d.ts +1 -0
- package/dist/src/components/icons/indeterminate-icon/IndeterminateIcon.d.ts +2 -0
- package/dist/src/components/icons/indeterminate-icon/index.d.ts +1 -0
- package/dist/src/components/icons/index.d.ts +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
function t(t) {
|
|
4
|
+
return e("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "1em",
|
|
7
|
+
height: "1em",
|
|
8
|
+
viewBox: "0 0 24 24",
|
|
9
|
+
...t,
|
|
10
|
+
children: e("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M19.5 3.09L15 7.59V4h-2v7h7V9h-3.59l4.5-4.5zM4 13v2h3.59l-4.5 4.5l1.41 1.41l4.5-4.5V20h2v-7z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
export { t as ArrowShrinkIcon };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ArrowShrinkIcon.js'
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
function t(t) {
|
|
4
|
+
return e("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "20",
|
|
7
|
+
height: "20",
|
|
8
|
+
viewBox: "0 0 20 20",
|
|
9
|
+
fill: "none",
|
|
10
|
+
...t,
|
|
11
|
+
children: e("path", {
|
|
12
|
+
d: "M5.83398 10.8332V9.1665H14.1673V10.8332H5.83398Z",
|
|
13
|
+
fill: "currentColor"
|
|
14
|
+
})
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
export { t as IndeterminateIcon };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './IndeterminateIcon.js'
|
|
@@ -157,3 +157,6 @@ export * from './edit-notes-icon.js'
|
|
|
157
157
|
export * from './file-xls-icon.js'
|
|
158
158
|
export * from './file-image-icon.js'
|
|
159
159
|
export * from './draw-icon.js'
|
|
160
|
+
export * from './arrow-shrink-icon.js'
|
|
161
|
+
export * from './indeterminate-icon.js'
|
|
162
|
+
export * from './manage-search-icon.js'
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
function t(t) {
|
|
3
|
+
return e("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
width: 24,
|
|
6
|
+
height: 24,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
...t,
|
|
9
|
+
children: e("path", {
|
|
10
|
+
fill: "currentColor",
|
|
11
|
+
d: "M2 19v-2h10v2zm0-5v-2h5v2zm0-5V7h5v2zm18.6 10l-3.85-3.85q-.6.425-1.312.638T14 16q-2.075 0-3.537-1.463T9 11t1.463-3.537T14 6t3.538 1.463T19 11q0 .725-.213 1.438t-.637 1.312L22 17.6zM14 14q1.25 0 2.125-.875T17 11t-.875-2.125T14 8t-2.125.875T11 11t.875 2.125T14 14"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
export { t as ManageSearchIcon };
|
package/dist/index.js
CHANGED
|
@@ -161,4 +161,7 @@ import { EditNotesIcon as Zt } from "./components/icons/edit-notes-icon/EditNote
|
|
|
161
161
|
import { FileXlsIcon as Qt } from "./components/icons/file-xls-icon/FileXlsIcon.js";
|
|
162
162
|
import { FileImageIcon as $t } from "./components/icons/file-image-icon/FileImageIcon.js";
|
|
163
163
|
import { DrawIcon as en } from "./components/icons/draw-icon/DrawIcon.js";
|
|
164
|
-
|
|
164
|
+
import { ArrowShrinkIcon as tn } from "./components/icons/arrow-shrink-icon/ArrowShrinkIcon.js";
|
|
165
|
+
import { IndeterminateIcon as nn } from "./components/icons/indeterminate-icon/IndeterminateIcon.js";
|
|
166
|
+
import { ManageSearchIcon as rn } from "./components/icons/manage-search-icon/ManageSearchIcon.js";
|
|
167
|
+
export { Rt as AppRegistrationIcon, R as ArchiveIcon, zt as ArrowExpandIcon, Gt as ArrowLeftIcon, tn as ArrowShrinkIcon, b as AssignmentIcon, x as AssignmentOutlineIcon, st as AttachFileIcon, ze as BackIcon, Mt as BackupIcon, Se as BadgeIcon, t as BellIcon, e as BellOutlineIcon, oe as CalendarBlankOutlineIcon, g as CalendarIcon, v as CalendarRangeIcon, y as CalendarRangeOutlineIcon, Dt as CancelOutlineIcon, lt as CardIdIcon, dt as CardIdIconOutlined, B as CheckBoxCheckedIcon, ut as CheckCircleIcon, h as CheckFactIcon, m as CheckFactOutlineIcon, W as CheckIcon, p as CheckOutlineIcon, Xt as CheckReadIcon, a as ChevronDoubleLeftIcon, o as ChevronDoubleRightIcon, V as ChevronDownIcon, i as ChevronLeftIcon, r as ChevronRightIcon, H as ChevronUpIcon, Lt as CircleWarningOutlineIcon, Ne as ClockOutlineIcon, U as CloseIcon, ot as CloudDoneOutlineIcon, Ht as CloudOffOutlineIcon, ve as ConsentsIcon, tt as ContentCopyIcon, nt as ContentCopyOutlineIcon, vt as ConversionPathIcon, l as DashboardViewIcon, u as DashboardViewOutlineIcon, $ as DeleteOutlineIcon, qe as DescriptionIcon, Je as DescriptionOutlineIcon, Ge as DnsIcon, Ke as DnsOutlineIcon, Ue as DoneAllIcon, N as DotsVerticalIcon, z as DownloadIcon, Nt as DownloadTrayIcon, Pt as DownloadingIcon, Z as DragHorizontalIcon, en as DrawIcon, L as DropDownIcon, I as DropUpIcon, re as DvrIcon, jt as DvrIconOutline, pe as EarthIcon, Zt as EditNotesIcon, Ce as EditSquareIcon, X as EmptyPageIcon, wt as EnvelopeIcon, ie as ErrorOutlineIcon, ce as FastCheckOutlineIcon, At as FileDocIcon, $t as FileImageIcon, Q as FilePdfIcon, Ft as FileRtfIcon, Qt as FileXlsIcon, ee as FilterIcon, te as FilterIconOff, k as FindReplaceIcon, A as FindReplacePeopleIcon, Tt as FingerprintIcon, je as FormIcon, Ye as FormatListBulletedIcon, Xe as FormatListBulletedOutlineIcon, yt as GraphIcon, bt as GraphOutlineIcon, n as HamburgerIcon, De as HandymanIcon, Ee as HandymanOutlineIcon, Be as HelpIcon, Ve as HelpOutlineIcon, _t as HistoryIcon, Yt as HistoryToggleOffIcon, q as InboxOutboxIcon, J as InboxOutboxOutlineIcon, nn as IndeterminateIcon, Ot as InfoOutlineIcon, at as InheritancePointerIcon, be as KeyboardCapslockIcon, It as LinkOffIcon, se as LinkOutlineIcon, S as ListNumberedIcon, fe as ListSettingsLineIcon, ue as ListStatusIcon, F as LoadingIcon, Ae as LocationIcon, ne as LockIcon, Ie as LoginIcon, Le as LogoutIcon, rn as ManageSearchIcon, C as MessageProcessingIcon, w as MessageProcessingOutlineIcon, xe as MessageReplyIcon, Fe as MicrosoftOutlookIcon, ye as MinimizeIcon, _ as NewCalendarIcon, He as NewWindowIcon, xt as NotesIcon, _e as OutlineCalendarMonth, ht as OutlineCheckboxIconBlank, mt as OutlineCheckboxIconChecked, gt as OutlineCheckboxIconIndeterminate, ft as OutlineNotificationsIcon, c as PdfIcon, he as PencilOutlineIcon, f as PeopleIcon, d as PeopleOutlineIcon, G as PermMediaIcon, K as PermMediaOutline, j as PersonIcon, M as PersonOutlineIcon, Qe as PersonSearchIcon, Ze as PersonSearchOutlineIcon, Oe as PinIcon, we as PlusIcon, Te as PlusIconCircle, s as QnrIcon, rt as RefreshIcon, Ct as RemoveIcon, Me as RepeatOutlineIcon, ae as ReplayIcon, T as ReportBoxIcon, E as ReportBoxOutlineIcon, Jt as ResetSettingsIcon, $e as RuleIcon, et as RuleOutlineIcon, St as SaveIcon, P as SearchIcon, ct as SendIcon, D as SettingsIcon, me as SettingsMenuHorizontalIcon, it as SettingsNoteIcon, O as SettingsOutlineIcon, Bt as ShareIcon, Wt as SmsIcon, pt as SyncIcon, Vt as SyncSavedLocallyIcon, de as TextBoxCheckOutlineIcon, Kt as TimelapseOutlineIcon, Re as TimerIcon, Pe as TodayIcon, Y as TopicIcon, kt as TuneIcon, le as UnknownDocumentOutlineRoundedIcon, We as UnlockIcon, Et as UploadIcon, Ut as VisibilityOutlineIcon, qt as WandStarsIcon, ge as WarningAmberOutlineIcon, ke as WorkIcon };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ArrowShrinkIcon';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './IndeterminateIcon';
|
|
@@ -157,3 +157,6 @@ export * from './edit-notes-icon';
|
|
|
157
157
|
export * from './file-xls-icon';
|
|
158
158
|
export * from './file-image-icon';
|
|
159
159
|
export * from './draw-icon';
|
|
160
|
+
export * from './arrow-shrink-icon';
|
|
161
|
+
export * from './indeterminate-icon';
|
|
162
|
+
export * from './manage-search-icon';
|