oolib 2.195.2 → 2.197.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/Accordion/index.js +4 -3
- package/dist/components/BlockLabel/index.js +0 -1
- package/dist/components/Tooltip/index.js +3 -2
- package/dist/icons/index.d.ts +135 -129
- package/dist/icons/index.js +133 -130
- package/dist/stories/Oolib/components/Tooltip.stories.js +3 -2
- package/dist/stories/v2/components/HeatMapGrid.stories.js +2970 -7
- package/dist/v2/components/Accordion/index.js +4 -3
- package/dist/v2/components/Hints/comps/HintsButton.js +3 -2
- package/dist/v2/components/List/comps/ListItem.js +1 -1
- package/dist/v2/components/RadioAndCheckbox/comps/CheckboxList/comps/CheckboxInput/index.js +2 -2
- package/dist/v2/components/TabBar/index.js +2 -2
- package/dist/v2/components/dataviz/BarChart/comps/Legend/index.js +1 -1
- package/dist/v2/components/dataviz/BarChart/index.js +1 -1
- package/dist/v2/components/dataviz/HeatMapGrid/index.d.ts +2 -1
- package/dist/v2/components/dataviz/HeatMapGrid/index.js +67 -61
- package/package.json +2 -2
|
@@ -35,7 +35,6 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
36
|
exports.Accordion = void 0;
|
|
37
37
|
var framer_motion_1 = require("framer-motion");
|
|
38
|
-
var phosphor_react_1 = require("phosphor-react");
|
|
39
38
|
var react_1 = __importStar(require("react"));
|
|
40
39
|
var Buttons_1 = require("../Buttons");
|
|
41
40
|
var Typo_1 = require("../Typo");
|
|
@@ -44,6 +43,8 @@ var utilsOolib_1 = require("../../utilsOolib");
|
|
|
44
43
|
var PercentCompletedPie_1 = require("../PercentCompletedPie");
|
|
45
44
|
var Tooltip_1 = require("../Tooltip");
|
|
46
45
|
var styled_1 = require("./styled");
|
|
46
|
+
var icons_1 = require("../../icons");
|
|
47
|
+
var CaretDown = icons_1.icons.CaretDown;
|
|
47
48
|
var HeaderStyle1 = function (_a) {
|
|
48
49
|
var title = _a.title, expand = _a.expand, handleToggle = _a.handleToggle, infoTooltip = _a.infoTooltip, invert = _a.invert;
|
|
49
50
|
return (react_1.default.createElement(styled_1.StyledHeaderStyle1Wrapper, { onClick: function () { return handleToggle(!expand); } },
|
|
@@ -52,7 +53,7 @@ var HeaderStyle1 = function (_a) {
|
|
|
52
53
|
infoTooltip && (react_1.default.createElement(Tooltip_1.Tooltip, { text: typeof infoTooltip === 'string' ? infoTooltip : infoTooltip.text, position: typeof infoTooltip !== 'string' ? infoTooltip.position || 'right' : 'right', invert: invert, popOutOfOverflowHiddenParent: typeof infoTooltip !== 'string' && infoTooltip.popOutOfOverflowHiddenParent, presetTarget: 'infoIcon' }))),
|
|
53
54
|
react_1.default.createElement(styled_1.NormalizedButton, null,
|
|
54
55
|
react_1.default.createElement(framer_motion_1.motion.div, { animate: { rotate: expand ? -180 : 0 }, transition: { type: 'tween', ease: 'easeOut' } },
|
|
55
|
-
react_1.default.createElement(
|
|
56
|
+
react_1.default.createElement(CaretDown, { size: 16 })))));
|
|
56
57
|
};
|
|
57
58
|
var HeaderStyle3 = function (_a) {
|
|
58
59
|
var title = _a.title, expand = _a.expand, handleToggle = _a.handleToggle, infoTooltip = _a.infoTooltip, invert = _a.invert;
|
|
@@ -62,7 +63,7 @@ var HeaderStyle3 = function (_a) {
|
|
|
62
63
|
infoTooltip && (react_1.default.createElement(Tooltip_1.Tooltip, { text: typeof infoTooltip === 'string' ? infoTooltip : infoTooltip.text, position: typeof infoTooltip !== 'string' ? infoTooltip.position || 'right' : 'right', invert: invert, popOutOfOverflowHiddenParent: typeof infoTooltip !== 'string' && infoTooltip.popOutOfOverflowHiddenParent, presetTarget: 'infoIcon' }))),
|
|
63
64
|
react_1.default.createElement(styled_1.NormalizedButton, null,
|
|
64
65
|
react_1.default.createElement(framer_motion_1.motion.div, { animate: { rotate: expand ? -180 : 0 }, transition: { type: 'tween', ease: 'easeOut' } },
|
|
65
|
-
react_1.default.createElement(
|
|
66
|
+
react_1.default.createElement(CaretDown, { size: 16 })))));
|
|
66
67
|
};
|
|
67
68
|
var HeaderStyle2 = function (_a) {
|
|
68
69
|
var title = _a.title, label = _a.label, expand = _a.expand, handleToggle = _a.handleToggle, percent = _a.percent, infoTooltip = _a.infoTooltip, invert = _a.invert;
|
|
@@ -45,7 +45,6 @@ var colors_1 = require("../../themes/colors");
|
|
|
45
45
|
var toArray_1 = require("../../utils/toArray");
|
|
46
46
|
var Hints_1 = __importDefault(require("../Hints"));
|
|
47
47
|
var Tooltip_1 = require("../Tooltip");
|
|
48
|
-
var phosphor_react_1 = require("phosphor-react");
|
|
49
48
|
var greyColor40 = colors_1.colors.greyColor40, greyColor80 = colors_1.colors.greyColor80;
|
|
50
49
|
var BlockLabel = function (props) {
|
|
51
50
|
var label = props.label, sublabel = props.sublabel, inputOnlyLabel = props.inputOnlyLabel, invert = props.invert, isRequired = props.isRequired, readOnly = props.readOnly, className = props.className, style = props.style, errorMsgs = props.errorMsgs, hints = props.hints, id = props.id, hintsTitle = props.hintsTitle, hintsBtnLabel = props.hintsBtnLabel, hintsSubtitle = props.hintsSubtitle, hideOptionalLabel = props.hideOptionalLabel, infoTooltip = props.infoTooltip;
|
|
@@ -45,12 +45,13 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
45
45
|
})();
|
|
46
46
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47
47
|
exports.Tooltip = void 0;
|
|
48
|
-
var phosphor_react_1 = require("phosphor-react");
|
|
49
48
|
var react_1 = __importStar(require("react"));
|
|
50
49
|
var themes_1 = require("../../themes");
|
|
51
50
|
var usePopOutOfOverflowHiddenParent_1 = require("../../utils/usePopOutOfOverflowHiddenParent");
|
|
52
51
|
var Typo_1 = require("../Typo");
|
|
53
52
|
var styled_1 = require("./styled");
|
|
53
|
+
var icons_1 = require("../../icons");
|
|
54
|
+
var Info = icons_1.icons.Info;
|
|
54
55
|
/**
|
|
55
56
|
* @component Renders a tooltip component with customizable text and styling.
|
|
56
57
|
*
|
|
@@ -99,7 +100,7 @@ var Tooltip = function (_a) {
|
|
|
99
100
|
setIsClicked(false), setShowTooltip(false);
|
|
100
101
|
}, ref: targetRef, tabIndex: 0 }, presetTarget === "infoIcon" ? (react_1.default.createElement(styled_1.StyledIconButton, null,
|
|
101
102
|
" ",
|
|
102
|
-
react_1.default.createElement(
|
|
103
|
+
react_1.default.createElement(Info, { color: invert ? themes_1.colors.white : themes_1.colors.greyColor100, size: 16, weight: showTooltip ? 'fill' : 'regular' }))) : (children)),
|
|
103
104
|
showTooltip && (react_1.default.createElement(styled_1.StyledTooltipBox, { fixPos: fixPos, isOpen: showTooltip, position: position, show: showTooltip, style: style, invert: invert },
|
|
104
105
|
text.split('\n').filter(Boolean).map(function (singleline, i) { return (react_1.default.createElement(Typo_1.SANS_2, __assign({}, (i !== 0 ? { style: { marginTop: '0.5rem' } } : {})), singleline)); }),
|
|
105
106
|
react_1.default.createElement(styled_1.StyledArrowOutline, { position: position },
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -128,6 +128,9 @@ export namespace icons {
|
|
|
128
128
|
export { CaretDoubleLeft };
|
|
129
129
|
export { TextIndent };
|
|
130
130
|
export { Share };
|
|
131
|
+
export { ChartBarHorizontal };
|
|
132
|
+
export { GridNine };
|
|
133
|
+
export { ChartDonut };
|
|
131
134
|
export { OkeGoogleIcon };
|
|
132
135
|
export { LetterH };
|
|
133
136
|
export { IndexIcon };
|
|
@@ -192,135 +195,138 @@ export namespace icons {
|
|
|
192
195
|
export { Reactions };
|
|
193
196
|
export { WarningDiamond };
|
|
194
197
|
}
|
|
195
|
-
import { PencilSimple } from 'phosphor-react';
|
|
196
|
-
import { PencilLine } from 'phosphor-react';
|
|
197
|
-
import { Plus } from 'phosphor-react';
|
|
198
|
-
import { Lightbulb } from 'phosphor-react';
|
|
199
|
-
import { Tag } from 'phosphor-react';
|
|
200
|
-
import { UploadSimple } from 'phosphor-react';
|
|
201
|
-
import { CaretLeft } from 'phosphor-react';
|
|
202
|
-
import { CaretRight } from 'phosphor-react';
|
|
203
|
-
import { XCircle } from 'phosphor-react';
|
|
204
|
-
import { XSquare } from 'phosphor-react';
|
|
205
|
-
import { DownloadSimple } from 'phosphor-react';
|
|
206
|
-
import { ArrowLineUpRight } from 'phosphor-react';
|
|
207
|
-
import { User } from 'phosphor-react';
|
|
208
|
-
import { UserCirclePlus } from 'phosphor-react';
|
|
209
|
-
import { MapPinLine } from 'phosphor-react';
|
|
210
|
-
import { WarningCircle } from 'phosphor-react';
|
|
211
|
-
import { HighlighterCircle } from 'phosphor-react';
|
|
212
|
-
import { Paperclip } from 'phosphor-react';
|
|
213
|
-
import { SpeakerHigh } from 'phosphor-react';
|
|
214
|
-
import { ArrowLeft } from 'phosphor-react';
|
|
215
|
-
import { CalendarBlank } from 'phosphor-react';
|
|
216
|
-
import { Trash } from 'phosphor-react';
|
|
217
|
-
import { DotsThreeVertical } from 'phosphor-react';
|
|
218
|
-
import { DotsThreeCircle } from 'phosphor-react';
|
|
219
|
-
import { DotsThree } from 'phosphor-react';
|
|
220
|
-
import { CaretUp } from 'phosphor-react';
|
|
221
|
-
import { CaretDown } from 'phosphor-react';
|
|
222
|
-
import { ShareNetwork } from 'phosphor-react';
|
|
223
|
-
import { X } from 'phosphor-react';
|
|
224
|
-
import { WhatsappLogo } from 'phosphor-react';
|
|
225
|
-
import { FacebookLogo } from 'phosphor-react';
|
|
226
|
-
import { TwitterLogo } from 'phosphor-react';
|
|
227
|
-
import { LinkedinLogo } from 'phosphor-react';
|
|
228
|
-
import { YoutubeLogo } from 'phosphor-react';
|
|
229
|
-
import { InstagramLogo } from 'phosphor-react';
|
|
230
|
-
import { Globe } from 'phosphor-react';
|
|
231
|
-
import { Phone } from 'phosphor-react';
|
|
232
|
-
import { Envelope } from 'phosphor-react';
|
|
233
|
-
import { Checks } from 'phosphor-react';
|
|
234
|
-
import { Check } from 'phosphor-react';
|
|
235
|
-
import { ArrowClockwise } from 'phosphor-react';
|
|
236
|
-
import { ArrowsClockwise } from 'phosphor-react';
|
|
237
|
-
import { ArrowsIn } from 'phosphor-react';
|
|
238
|
-
import { ArrowsOut } from 'phosphor-react';
|
|
239
|
-
import { MapPin } from 'phosphor-react';
|
|
240
|
-
import { ArrowDown } from 'phosphor-react';
|
|
241
|
-
import { ArrowsDownUp } from 'phosphor-react';
|
|
242
|
-
import { ArrowUp } from 'phosphor-react';
|
|
243
|
-
import { GearSix } from 'phosphor-react';
|
|
244
|
-
import { Wrench } from 'phosphor-react';
|
|
245
|
-
import { CheckSquare } from 'phosphor-react';
|
|
246
|
-
import { CheckSquareOffset } from 'phosphor-react';
|
|
247
|
-
import { Cards } from 'phosphor-react';
|
|
248
|
-
import { SignOut } from 'phosphor-react';
|
|
249
|
-
import { Swap } from 'phosphor-react';
|
|
250
|
-
import { CheckCircle } from 'phosphor-react';
|
|
251
|
-
import { Circle } from 'phosphor-react';
|
|
252
|
-
import { ImageSquare } from 'phosphor-react';
|
|
253
|
-
import { ListDashes } from 'phosphor-react';
|
|
254
|
-
import { ListNumbers } from 'phosphor-react';
|
|
255
|
-
import { ListPlus } from 'phosphor-react';
|
|
256
|
-
import { List } from 'phosphor-react';
|
|
257
|
-
import { FileArrowUp } from 'phosphor-react';
|
|
258
|
-
import { VideoCamera } from 'phosphor-react';
|
|
259
|
-
import { Quotes } from 'phosphor-react';
|
|
260
|
-
import { SpeakerSimpleHigh } from 'phosphor-react';
|
|
261
|
-
import { FilePdf } from 'phosphor-react';
|
|
262
|
-
import { MagnifyingGlass } from 'phosphor-react';
|
|
263
|
-
import { Eye } from 'phosphor-react';
|
|
264
|
-
import { EyeClosed } from 'phosphor-react';
|
|
265
|
-
import { Minus } from 'phosphor-react';
|
|
266
|
-
import { TextHOne } from 'phosphor-react';
|
|
267
|
-
import { TextHTwo } from 'phosphor-react';
|
|
268
|
-
import { TextHThree } from 'phosphor-react';
|
|
269
|
-
import { TextBolder } from 'phosphor-react';
|
|
270
|
-
import { TextItalic } from 'phosphor-react';
|
|
271
|
-
import { TextUnderline } from 'phosphor-react';
|
|
272
|
-
import { ArrowRight } from 'phosphor-react';
|
|
273
|
-
import { Sliders } from 'phosphor-react';
|
|
274
|
-
import { Faders } from 'phosphor-react';
|
|
275
|
-
import { Code } from 'phosphor-react';
|
|
276
|
-
import { SortDescending } from 'phosphor-react';
|
|
277
|
-
import { SortAscending } from 'phosphor-react';
|
|
278
|
-
import { Crosshair } from 'phosphor-react';
|
|
279
|
-
import { MicrophoneStage } from 'phosphor-react';
|
|
280
|
-
import { File } from 'phosphor-react';
|
|
281
|
-
import { FolderSimple } from 'phosphor-react';
|
|
282
|
-
import { FolderSimpleStar } from 'phosphor-react';
|
|
283
|
-
import { LinkSimple } from 'phosphor-react';
|
|
284
|
-
import { Laptop } from 'phosphor-react';
|
|
285
|
-
import { Info } from 'phosphor-react';
|
|
286
|
-
import { DotsSixVertical } from 'phosphor-react';
|
|
287
|
-
import { Bell } from 'phosphor-react';
|
|
288
|
-
import { UserSwitch } from 'phosphor-react';
|
|
289
|
-
import { PlusMinus } from 'phosphor-react';
|
|
290
|
-
import { SelectionAll } from 'phosphor-react';
|
|
291
|
-
import { Activity } from 'phosphor-react';
|
|
292
|
-
import { Browsers } from 'phosphor-react';
|
|
293
|
-
import { Cube } from 'phosphor-react';
|
|
294
|
-
import { Table } from 'phosphor-react';
|
|
295
|
-
import { UserList } from 'phosphor-react';
|
|
296
|
-
import { Binoculars } from 'phosphor-react';
|
|
297
|
-
import { LightbulbFilament } from 'phosphor-react';
|
|
298
|
-
import { Keyboard } from 'phosphor-react';
|
|
299
|
-
import { TextAa } from 'phosphor-react';
|
|
300
|
-
import { ThumbsUp } from 'phosphor-react';
|
|
301
|
-
import { ChatText } from 'phosphor-react';
|
|
302
|
-
import { SlackLogo } from 'phosphor-react';
|
|
303
|
-
import { SquareHalf } from 'phosphor-react';
|
|
304
|
-
import { SquareHalfBottom } from 'phosphor-react';
|
|
305
|
-
import { MagicWand } from 'phosphor-react';
|
|
306
|
-
import { CrownSimple } from 'phosphor-react';
|
|
307
|
-
import { Funnel } from 'phosphor-react';
|
|
308
|
-
import { ThumbsDown } from 'phosphor-react';
|
|
309
|
-
import { CopySimple } from 'phosphor-react';
|
|
310
|
-
import { PaperPlaneRight } from 'phosphor-react';
|
|
311
|
-
import { Warning } from 'phosphor-react';
|
|
312
|
-
import { Star } from 'phosphor-react';
|
|
313
|
-
import { ArrowsVertical } from 'phosphor-react';
|
|
314
|
-
import { CirclesFour } from 'phosphor-react';
|
|
315
|
-
import { ArrowLineDown } from 'phosphor-react';
|
|
316
|
-
import { PaperPlaneTilt } from 'phosphor-react';
|
|
317
|
-
import { NotePencil } from 'phosphor-react';
|
|
318
|
-
import { CircleNotch } from 'phosphor-react';
|
|
319
|
-
import { PaintBucket } from 'phosphor-react';
|
|
320
|
-
import { SquaresFour } from 'phosphor-react';
|
|
321
|
-
import { CaretDoubleLeft } from 'phosphor-react';
|
|
322
|
-
import { TextIndent } from 'phosphor-react';
|
|
323
|
-
import { Share } from 'phosphor-react';
|
|
198
|
+
import { PencilSimpleIcon as PencilSimple } from '@phosphor-icons/react';
|
|
199
|
+
import { PencilLineIcon as PencilLine } from '@phosphor-icons/react';
|
|
200
|
+
import { PlusIcon as Plus } from '@phosphor-icons/react';
|
|
201
|
+
import { LightbulbIcon as Lightbulb } from '@phosphor-icons/react';
|
|
202
|
+
import { TagIcon as Tag } from '@phosphor-icons/react';
|
|
203
|
+
import { UploadSimpleIcon as UploadSimple } from '@phosphor-icons/react';
|
|
204
|
+
import { CaretLeftIcon as CaretLeft } from '@phosphor-icons/react';
|
|
205
|
+
import { CaretRightIcon as CaretRight } from '@phosphor-icons/react';
|
|
206
|
+
import { XCircleIcon as XCircle } from '@phosphor-icons/react';
|
|
207
|
+
import { XSquareIcon as XSquare } from '@phosphor-icons/react';
|
|
208
|
+
import { DownloadSimpleIcon as DownloadSimple } from '@phosphor-icons/react';
|
|
209
|
+
import { ArrowLineUpRightIcon as ArrowLineUpRight } from '@phosphor-icons/react';
|
|
210
|
+
import { UserIcon as User } from '@phosphor-icons/react';
|
|
211
|
+
import { UserCirclePlusIcon as UserCirclePlus } from '@phosphor-icons/react';
|
|
212
|
+
import { MapPinLineIcon as MapPinLine } from '@phosphor-icons/react';
|
|
213
|
+
import { WarningCircleIcon as WarningCircle } from '@phosphor-icons/react';
|
|
214
|
+
import { HighlighterCircleIcon as HighlighterCircle } from '@phosphor-icons/react';
|
|
215
|
+
import { PaperclipIcon as Paperclip } from '@phosphor-icons/react';
|
|
216
|
+
import { SpeakerHighIcon as SpeakerHigh } from '@phosphor-icons/react';
|
|
217
|
+
import { ArrowLeftIcon as ArrowLeft } from '@phosphor-icons/react';
|
|
218
|
+
import { CalendarBlankIcon as CalendarBlank } from '@phosphor-icons/react';
|
|
219
|
+
import { TrashIcon as Trash } from '@phosphor-icons/react';
|
|
220
|
+
import { DotsThreeVerticalIcon as DotsThreeVertical } from '@phosphor-icons/react';
|
|
221
|
+
import { DotsThreeCircleIcon as DotsThreeCircle } from '@phosphor-icons/react';
|
|
222
|
+
import { DotsThreeIcon as DotsThree } from '@phosphor-icons/react';
|
|
223
|
+
import { CaretUpIcon as CaretUp } from '@phosphor-icons/react';
|
|
224
|
+
import { CaretDownIcon as CaretDown } from '@phosphor-icons/react';
|
|
225
|
+
import { ShareNetworkIcon as ShareNetwork } from '@phosphor-icons/react';
|
|
226
|
+
import { XIcon as X } from '@phosphor-icons/react';
|
|
227
|
+
import { WhatsappLogoIcon as WhatsappLogo } from '@phosphor-icons/react';
|
|
228
|
+
import { FacebookLogoIcon as FacebookLogo } from '@phosphor-icons/react';
|
|
229
|
+
import { TwitterLogoIcon as TwitterLogo } from '@phosphor-icons/react';
|
|
230
|
+
import { LinkedinLogoIcon as LinkedinLogo } from '@phosphor-icons/react';
|
|
231
|
+
import { YoutubeLogoIcon as YoutubeLogo } from '@phosphor-icons/react';
|
|
232
|
+
import { InstagramLogoIcon as InstagramLogo } from '@phosphor-icons/react';
|
|
233
|
+
import { GlobeIcon as Globe } from '@phosphor-icons/react';
|
|
234
|
+
import { PhoneIcon as Phone } from '@phosphor-icons/react';
|
|
235
|
+
import { EnvelopeIcon as Envelope } from '@phosphor-icons/react';
|
|
236
|
+
import { ChecksIcon as Checks } from '@phosphor-icons/react';
|
|
237
|
+
import { CheckIcon as Check } from '@phosphor-icons/react';
|
|
238
|
+
import { ArrowClockwiseIcon as ArrowClockwise } from '@phosphor-icons/react';
|
|
239
|
+
import { ArrowsClockwiseIcon as ArrowsClockwise } from '@phosphor-icons/react';
|
|
240
|
+
import { ArrowsInIcon as ArrowsIn } from '@phosphor-icons/react';
|
|
241
|
+
import { ArrowsOutIcon as ArrowsOut } from '@phosphor-icons/react';
|
|
242
|
+
import { MapPinIcon as MapPin } from '@phosphor-icons/react';
|
|
243
|
+
import { ArrowDownIcon as ArrowDown } from '@phosphor-icons/react';
|
|
244
|
+
import { ArrowsDownUpIcon as ArrowsDownUp } from '@phosphor-icons/react';
|
|
245
|
+
import { ArrowUpIcon as ArrowUp } from '@phosphor-icons/react';
|
|
246
|
+
import { GearSixIcon as GearSix } from '@phosphor-icons/react';
|
|
247
|
+
import { WrenchIcon as Wrench } from '@phosphor-icons/react';
|
|
248
|
+
import { CheckSquareIcon as CheckSquare } from '@phosphor-icons/react';
|
|
249
|
+
import { CheckSquareOffsetIcon as CheckSquareOffset } from '@phosphor-icons/react';
|
|
250
|
+
import { CardsIcon as Cards } from '@phosphor-icons/react';
|
|
251
|
+
import { SignOutIcon as SignOut } from '@phosphor-icons/react';
|
|
252
|
+
import { SwapIcon as Swap } from '@phosphor-icons/react';
|
|
253
|
+
import { CheckCircleIcon as CheckCircle } from '@phosphor-icons/react';
|
|
254
|
+
import { CircleIcon as Circle } from '@phosphor-icons/react';
|
|
255
|
+
import { ImageSquareIcon as ImageSquare } from '@phosphor-icons/react';
|
|
256
|
+
import { ListDashesIcon as ListDashes } from '@phosphor-icons/react';
|
|
257
|
+
import { ListNumbersIcon as ListNumbers } from '@phosphor-icons/react';
|
|
258
|
+
import { ListPlusIcon as ListPlus } from '@phosphor-icons/react';
|
|
259
|
+
import { ListIcon as List } from '@phosphor-icons/react';
|
|
260
|
+
import { FileArrowUpIcon as FileArrowUp } from '@phosphor-icons/react';
|
|
261
|
+
import { VideoCameraIcon as VideoCamera } from '@phosphor-icons/react';
|
|
262
|
+
import { QuotesIcon as Quotes } from '@phosphor-icons/react';
|
|
263
|
+
import { SpeakerSimpleHighIcon as SpeakerSimpleHigh } from '@phosphor-icons/react';
|
|
264
|
+
import { FilePdfIcon as FilePdf } from '@phosphor-icons/react';
|
|
265
|
+
import { MagnifyingGlassIcon as MagnifyingGlass } from '@phosphor-icons/react';
|
|
266
|
+
import { EyeIcon as Eye } from '@phosphor-icons/react';
|
|
267
|
+
import { EyeClosedIcon as EyeClosed } from '@phosphor-icons/react';
|
|
268
|
+
import { MinusIcon as Minus } from '@phosphor-icons/react';
|
|
269
|
+
import { TextHOneIcon as TextHOne } from '@phosphor-icons/react';
|
|
270
|
+
import { TextHTwoIcon as TextHTwo } from '@phosphor-icons/react';
|
|
271
|
+
import { TextHThreeIcon as TextHThree } from '@phosphor-icons/react';
|
|
272
|
+
import { TextBolderIcon as TextBolder } from '@phosphor-icons/react';
|
|
273
|
+
import { TextItalicIcon as TextItalic } from '@phosphor-icons/react';
|
|
274
|
+
import { TextUnderlineIcon as TextUnderline } from '@phosphor-icons/react';
|
|
275
|
+
import { ArrowRightIcon as ArrowRight } from '@phosphor-icons/react';
|
|
276
|
+
import { SlidersIcon as Sliders } from '@phosphor-icons/react';
|
|
277
|
+
import { FadersIcon as Faders } from '@phosphor-icons/react';
|
|
278
|
+
import { CodeIcon as Code } from '@phosphor-icons/react';
|
|
279
|
+
import { SortDescendingIcon as SortDescending } from '@phosphor-icons/react';
|
|
280
|
+
import { SortAscendingIcon as SortAscending } from '@phosphor-icons/react';
|
|
281
|
+
import { CrosshairIcon as Crosshair } from '@phosphor-icons/react';
|
|
282
|
+
import { MicrophoneStageIcon as MicrophoneStage } from '@phosphor-icons/react';
|
|
283
|
+
import { FileIcon as File } from '@phosphor-icons/react';
|
|
284
|
+
import { FolderSimpleIcon as FolderSimple } from '@phosphor-icons/react';
|
|
285
|
+
import { FolderSimpleStarIcon as FolderSimpleStar } from '@phosphor-icons/react';
|
|
286
|
+
import { LinkSimpleIcon as LinkSimple } from '@phosphor-icons/react';
|
|
287
|
+
import { LaptopIcon as Laptop } from '@phosphor-icons/react';
|
|
288
|
+
import { InfoIcon as Info } from '@phosphor-icons/react';
|
|
289
|
+
import { DotsSixVerticalIcon as DotsSixVertical } from '@phosphor-icons/react';
|
|
290
|
+
import { BellIcon as Bell } from '@phosphor-icons/react';
|
|
291
|
+
import { UserSwitchIcon as UserSwitch } from '@phosphor-icons/react';
|
|
292
|
+
import { PlusMinusIcon as PlusMinus } from '@phosphor-icons/react';
|
|
293
|
+
import { SelectionAllIcon as SelectionAll } from '@phosphor-icons/react';
|
|
294
|
+
import { ActivityIcon as Activity } from '@phosphor-icons/react';
|
|
295
|
+
import { BrowsersIcon as Browsers } from '@phosphor-icons/react';
|
|
296
|
+
import { CubeIcon as Cube } from '@phosphor-icons/react';
|
|
297
|
+
import { TableIcon as Table } from '@phosphor-icons/react';
|
|
298
|
+
import { UserListIcon as UserList } from '@phosphor-icons/react';
|
|
299
|
+
import { BinocularsIcon as Binoculars } from '@phosphor-icons/react';
|
|
300
|
+
import { LightbulbFilamentIcon as LightbulbFilament } from '@phosphor-icons/react';
|
|
301
|
+
import { KeyboardIcon as Keyboard } from '@phosphor-icons/react';
|
|
302
|
+
import { TextAaIcon as TextAa } from '@phosphor-icons/react';
|
|
303
|
+
import { ThumbsUpIcon as ThumbsUp } from '@phosphor-icons/react';
|
|
304
|
+
import { ChatTextIcon as ChatText } from '@phosphor-icons/react';
|
|
305
|
+
import { SlackLogoIcon as SlackLogo } from '@phosphor-icons/react';
|
|
306
|
+
import { SquareHalfIcon as SquareHalf } from '@phosphor-icons/react';
|
|
307
|
+
import { SquareHalfBottomIcon as SquareHalfBottom } from '@phosphor-icons/react';
|
|
308
|
+
import { MagicWandIcon as MagicWand } from '@phosphor-icons/react';
|
|
309
|
+
import { CrownSimpleIcon as CrownSimple } from '@phosphor-icons/react';
|
|
310
|
+
import { FunnelIcon as Funnel } from '@phosphor-icons/react';
|
|
311
|
+
import { ThumbsDownIcon as ThumbsDown } from '@phosphor-icons/react';
|
|
312
|
+
import { CopySimpleIcon as CopySimple } from '@phosphor-icons/react';
|
|
313
|
+
import { PaperPlaneRightIcon as PaperPlaneRight } from '@phosphor-icons/react';
|
|
314
|
+
import { WarningIcon as Warning } from '@phosphor-icons/react';
|
|
315
|
+
import { StarIcon as Star } from '@phosphor-icons/react';
|
|
316
|
+
import { ArrowsVerticalIcon as ArrowsVertical } from '@phosphor-icons/react';
|
|
317
|
+
import { CirclesFourIcon as CirclesFour } from '@phosphor-icons/react';
|
|
318
|
+
import { ArrowLineDownIcon as ArrowLineDown } from '@phosphor-icons/react';
|
|
319
|
+
import { PaperPlaneTiltIcon as PaperPlaneTilt } from '@phosphor-icons/react';
|
|
320
|
+
import { NotePencilIcon as NotePencil } from '@phosphor-icons/react';
|
|
321
|
+
import { CircleNotchIcon as CircleNotch } from '@phosphor-icons/react';
|
|
322
|
+
import { PaintBucketIcon as PaintBucket } from '@phosphor-icons/react';
|
|
323
|
+
import { SquaresFourIcon as SquaresFour } from '@phosphor-icons/react';
|
|
324
|
+
import { CaretDoubleLeftIcon as CaretDoubleLeft } from '@phosphor-icons/react';
|
|
325
|
+
import { TextIndentIcon as TextIndent } from '@phosphor-icons/react';
|
|
326
|
+
import { ShareIcon as Share } from '@phosphor-icons/react';
|
|
327
|
+
import { ChartBarHorizontalIcon as ChartBarHorizontal } from '@phosphor-icons/react';
|
|
328
|
+
import { GridNineIcon as GridNine } from '@phosphor-icons/react';
|
|
329
|
+
import { ChartDonutIcon as ChartDonut } from '@phosphor-icons/react';
|
|
324
330
|
import { OkeGoogleIcon } from "./custom";
|
|
325
331
|
import { LetterH } from "./custom";
|
|
326
332
|
import { IndexIcon } from "./custom";
|