@nice2dev/icons-business 1.0.10

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.
Files changed (64) hide show
  1. package/README.md +243 -0
  2. package/dist/accounting.d.ts +59 -0
  3. package/dist/accounting.d.ts.map +1 -0
  4. package/dist/analytics.d.ts +68 -0
  5. package/dist/analytics.d.ts.map +1 -0
  6. package/dist/communication.d.ts +50 -0
  7. package/dist/communication.d.ts.map +1 -0
  8. package/dist/createBusinessIcon.d.ts +37 -0
  9. package/dist/createBusinessIcon.d.ts.map +1 -0
  10. package/dist/crm.d.ts +49 -0
  11. package/dist/crm.d.ts.map +1 -0
  12. package/dist/ecommerce.d.ts +66 -0
  13. package/dist/ecommerce.d.ts.map +1 -0
  14. package/dist/finance.d.ts +21 -0
  15. package/dist/finance.d.ts.map +1 -0
  16. package/dist/governance.d.ts +9 -0
  17. package/dist/governance.d.ts.map +1 -0
  18. package/dist/healthcare.d.ts +9 -0
  19. package/dist/healthcare.d.ts.map +1 -0
  20. package/dist/hr.d.ts +18 -0
  21. package/dist/hr.d.ts.map +1 -0
  22. package/dist/index.cjs +2 -0
  23. package/dist/index.cjs.map +1 -0
  24. package/dist/index.d.ts +817 -0
  25. package/dist/index.d.ts.map +1 -0
  26. package/dist/index.mjs +14838 -0
  27. package/dist/index.mjs.map +1 -0
  28. package/dist/industry.d.ts +11 -0
  29. package/dist/industry.d.ts.map +1 -0
  30. package/dist/legal.d.ts +52 -0
  31. package/dist/legal.d.ts.map +1 -0
  32. package/dist/logistics.d.ts +54 -0
  33. package/dist/logistics.d.ts.map +1 -0
  34. package/dist/marketing.d.ts +60 -0
  35. package/dist/marketing.d.ts.map +1 -0
  36. package/dist/office.d.ts +20 -0
  37. package/dist/office.d.ts.map +1 -0
  38. package/dist/production.d.ts +55 -0
  39. package/dist/production.d.ts.map +1 -0
  40. package/dist/project.d.ts +18 -0
  41. package/dist/project.d.ts.map +1 -0
  42. package/dist/purchasing.d.ts +52 -0
  43. package/dist/purchasing.d.ts.map +1 -0
  44. package/dist/sales.d.ts +52 -0
  45. package/dist/sales.d.ts.map +1 -0
  46. package/dist/sectors.d.ts +11 -0
  47. package/dist/sectors.d.ts.map +1 -0
  48. package/dist/startup.d.ts +50 -0
  49. package/dist/startup.d.ts.map +1 -0
  50. package/dist/stories/BusinessIcon.stories.d.ts +30 -0
  51. package/dist/stories/BusinessIcon.stories.d.ts.map +1 -0
  52. package/dist/stories/IconGallery.stories.d.ts +15 -0
  53. package/dist/stories/IconGallery.stories.d.ts.map +1 -0
  54. package/dist/strategy.d.ts +46 -0
  55. package/dist/strategy.d.ts.map +1 -0
  56. package/dist/support.d.ts +52 -0
  57. package/dist/support.d.ts.map +1 -0
  58. package/dist/sustainability.d.ts +9 -0
  59. package/dist/sustainability.d.ts.map +1 -0
  60. package/dist/types.d.ts +124 -0
  61. package/dist/types.d.ts.map +1 -0
  62. package/dist/warehouse.d.ts +55 -0
  63. package/dist/warehouse.d.ts.map +1 -0
  64. package/package.json +76 -0
package/README.md ADDED
@@ -0,0 +1,243 @@
1
+ # @nice2dev/icons-business
2
+
3
+ Animated business icons for enterprise applications. Part of the Nice2Dev UI component library.
4
+
5
+ ## Features
6
+
7
+ - 🎭 **60 Unique Icons** — Finance, Office, HR, and Project Management categories
8
+ - ✨ **SMIL Animations** — 9 built-in animation types (pulse, grow, shake, spin, bounce, fade, flip, slide, glow)
9
+ - 🎨 **3 Variants** — Filled, outlined, and duotone styles
10
+ - ⚡ **Tree-shakeable** — Import only what you need
11
+ - 📦 **Lazy Loading** — Icon collections support dynamic imports
12
+ - 🔧 **TypeScript** — Full type safety with strict typing
13
+ - ♿ **Accessible** — ARIA attributes and keyboard support
14
+
15
+ ## Installation
16
+
17
+ ```bash
18
+ # npm
19
+ npm install @nice2dev/icons-business
20
+
21
+ # pnpm
22
+ pnpm add @nice2dev/icons-business
23
+
24
+ # yarn
25
+ yarn add @nice2dev/icons-business
26
+ ```
27
+
28
+ ## Quick Start
29
+
30
+ ```tsx
31
+ import { DollarIcon, KanbanIcon, TeamIcon } from '@nice2dev/icons-business';
32
+
33
+ function App() {
34
+ return (
35
+ <div>
36
+ {/* Static icon */}
37
+ <DollarIcon size={24} />
38
+
39
+ {/* Animated icon */}
40
+ <KanbanIcon animation="pulse" size={32} />
41
+
42
+ {/* Custom styling */}
43
+ <TeamIcon variant="duotone" color="#3b82f6" accentColor="#93c5fd" animation="grow" />
44
+ </div>
45
+ );
46
+ }
47
+ ```
48
+
49
+ ## Icon Categories
50
+
51
+ ### Finance (15 icons)
52
+
53
+ | Icon | Name | Description |
54
+ | ---- | ---------------- | --------------------------- |
55
+ | 📈 | `ChartLineIcon` | Line chart for trends |
56
+ | 📊 | `ChartBarIcon` | Bar chart for comparisons |
57
+ | 🥧 | `ChartPieIcon` | Pie chart for distributions |
58
+ | 💵 | `DollarIcon` | USD currency symbol |
59
+ | 💶 | `EuroIcon` | EUR currency symbol |
60
+ | 📄 | `InvoiceIcon` | Invoice/bill document |
61
+ | 👛 | `WalletIcon` | Digital wallet |
62
+ | 💳 | `CreditCardIcon` | Credit/debit card |
63
+ | 🏦 | `BankIcon` | Banking institution |
64
+ | 🐷 | `PiggyBankIcon` | Savings/piggy bank |
65
+ | 🪙 | `CoinStackIcon` | Stacked coins |
66
+ | 📈 | `GrowthIcon` | Growth arrow up |
67
+ | 📉 | `LossIcon` | Loss arrow down |
68
+ | 📋 | `BudgetIcon` | Budget planning |
69
+ | 🧾 | `ReceiptIcon` | Payment receipt |
70
+
71
+ ### Office (15 icons)
72
+
73
+ | Icon | Name | Description |
74
+ | ---- | --------------- | ------------------------ |
75
+ | 💼 | `BriefcaseIcon` | Business briefcase |
76
+ | 📋 | `ClipboardIcon` | Clipboard with checklist |
77
+ | 📅 | `CalendarIcon` | Calendar/scheduling |
78
+ | 🪑 | `DeskIcon` | Office desk |
79
+ | 🖨️ | `PrinterIcon` | Printer device |
80
+ | 📠 | `ScannerIcon` | Document scanner |
81
+ | 📁 | `FolderIcon` | File folder |
82
+ | 📄 | `FileIcon` | Document file |
83
+ | 📝 | `DocumentIcon` | Text document |
84
+ | 🔖 | `StampIcon` | Approval stamp |
85
+ | 📎 | `PaperClipIcon` | Paper clip |
86
+ | 📌 | `StaplerIcon` | Stapler |
87
+ | 📓 | `NotebookIcon` | Notebook/journal |
88
+ | ✍️ | `PenIcon` | Writing pen |
89
+ | ☕ | `CoffeeIcon` | Coffee cup |
90
+
91
+ ### HR (15 icons)
92
+
93
+ | Icon | Name | Description |
94
+ | ---- | ----------------- | --------------------- |
95
+ | 👥 | `TeamIcon` | Team/group of people |
96
+ | 🤝 | `MeetingIcon` | Meeting/conference |
97
+ | ➕ | `HireIcon` | New hire/recruitment |
98
+ | 🤝 | `HandshakeIcon` | Business handshake |
99
+ | 🪪 | `IdCardIcon` | Employee ID card |
100
+ | 🏛️ | `OrgChartIcon` | Organization chart |
101
+ | 📊 | `PerformanceIcon` | Performance metrics |
102
+ | 🎤 | `InterviewIcon` | Job interview |
103
+ | 📜 | `ContractIcon` | Employment contract |
104
+ | 🚀 | `OnboardingIcon` | Employee onboarding |
105
+ | 💰 | `PayrollIcon` | Payroll/salary |
106
+ | 🎁 | `BenefitsIcon` | Employee benefits |
107
+ | 🎓 | `TrainingIcon` | Training/education |
108
+ | 💬 | `FeedbackIcon` | Employee feedback |
109
+ | 🌈 | `DiversityIcon` | Diversity & inclusion |
110
+
111
+ ### Project Management (15 icons)
112
+
113
+ | Icon | Name | Description |
114
+ | ---- | ------------------- | ----------------- |
115
+ | 📋 | `KanbanIcon` | Kanban board |
116
+ | 📏 | `TimelineIcon` | Project timeline |
117
+ | 🏁 | `MilestoneIcon` | Project milestone |
118
+ | 🏃 | `SprintIcon` | Agile sprint |
119
+ | 📝 | `BacklogIcon` | Product backlog |
120
+ | ✅ | `TaskIcon` | Task/to-do item |
121
+ | ⏰ | `DeadlineIcon` | Deadline/due date |
122
+ | 📊 | `ProgressIcon` | Progress bar |
123
+ | 🗺️ | `RoadmapIcon` | Product roadmap |
124
+ | 📉 | `GanttIcon` | Gantt chart |
125
+ | 🔄 | `AgileIcon` | Agile methodology |
126
+ | 🏈 | `ScrumIcon` | Scrum framework |
127
+ | 📆 | `PlanningIcon` | Sprint planning |
128
+ | 🔍 | `RetrospectiveIcon` | Retrospective |
129
+ | 🚀 | `VelocityIcon` | Team velocity |
130
+
131
+ ## Animation Types
132
+
133
+ ```tsx
134
+ import { DollarIcon } from '@nice2dev/icons-business';
135
+
136
+ // Available animations
137
+ <DollarIcon animation="pulse" /> // Pulsing opacity
138
+ <DollarIcon animation="grow" /> // Scale up/down
139
+ <DollarIcon animation="shake" /> // Horizontal shake
140
+ <DollarIcon animation="spin" /> // 360° rotation
141
+ <DollarIcon animation="bounce" /> // Vertical bounce
142
+ <DollarIcon animation="fade" /> // Fade in/out
143
+ <DollarIcon animation="flip" /> // Y-axis flip
144
+ <DollarIcon animation="slide" /> // Horizontal slide
145
+ <DollarIcon animation="glow" /> // Drop shadow glow
146
+ ```
147
+
148
+ ### Animation Duration
149
+
150
+ ```tsx
151
+ <DollarIcon animation="pulse" animationDuration="fast" /> // 0.5s
152
+ <DollarIcon animation="pulse" animationDuration="normal" /> // 1s (default)
153
+ <DollarIcon animation="pulse" animationDuration="slow" /> // 2s
154
+ ```
155
+
156
+ ## Icon Variants
157
+
158
+ ```tsx
159
+ import { TeamIcon } from '@nice2dev/icons-business';
160
+
161
+ // Filled (default)
162
+ <TeamIcon variant="filled" />
163
+
164
+ // Outlined
165
+ <TeamIcon variant="outlined" />
166
+
167
+ // Duotone (two-color)
168
+ <TeamIcon
169
+ variant="duotone"
170
+ color="#3b82f6"
171
+ accentColor="#93c5fd"
172
+ />
173
+ ```
174
+
175
+ ## Props Reference
176
+
177
+ | Prop | Type | Default | Description |
178
+ | ------------------- | ------------------------------------- | ---------------- | ------------------------------------------ |
179
+ | `size` | `number \| string` | `24` | Icon size in pixels or CSS string |
180
+ | `color` | `string` | `'currentColor'` | Primary icon color |
181
+ | `accentColor` | `string` | `color` | Secondary/accent color for duotone |
182
+ | `variant` | `'filled' \| 'outlined' \| 'duotone'` | `'filled'` | Icon style variant |
183
+ | `animation` | `BusinessIconAnimation` | `'none'` | Animation type |
184
+ | `animationDuration` | `'slow' \| 'normal' \| 'fast'` | `'normal'` | Animation speed |
185
+ | `animate` | `boolean` | `true` | Whether animation should play |
186
+ | `strokeWidth` | `number` | `2` | Stroke width for outlined variant |
187
+ | `className` | `string` | `undefined` | Additional CSS class |
188
+ | `title` | `string` | `undefined` | Accessible title (also enables aria-label) |
189
+ | `style` | `CSSProperties` | `undefined` | Inline styles |
190
+
191
+ ## Dynamic Imports
192
+
193
+ For code-splitting, use the icon collections:
194
+
195
+ ```tsx
196
+ import { FinanceIcons } from '@nice2dev/icons-business';
197
+
198
+ // Dynamically load an icon
199
+ const loadDollarIcon = async () => {
200
+ const DollarIcon = await FinanceIcons.Dollar();
201
+ return DollarIcon;
202
+ };
203
+ ```
204
+
205
+ ## Creating Custom Icons
206
+
207
+ Use the factory function to create custom business icons:
208
+
209
+ ```tsx
210
+ import { createBusinessIcon } from '@nice2dev/icons-business';
211
+
212
+ const CustomIcon = createBusinessIcon(
213
+ ({ color, accentColor, variant }) => (
214
+ <>
215
+ <path d="M12 2L2 22h20L12 2z" fill={variant === 'outlined' ? 'none' : color} stroke={color} />
216
+ {variant === 'duotone' && <circle cx="12" cy="14" r="3" fill={accentColor || color} />}
217
+ </>
218
+ ),
219
+ { displayName: 'CustomIcon', viewBox: '0 0 24 24' },
220
+ );
221
+ ```
222
+
223
+ ## TypeScript
224
+
225
+ All icons are fully typed:
226
+
227
+ ```tsx
228
+ import type {
229
+ BusinessIconProps,
230
+ BusinessIconAnimation,
231
+ FinanceIconName,
232
+ OfficeIconName,
233
+ HRIconName,
234
+ ProjectIconName,
235
+ } from '@nice2dev/icons-business';
236
+
237
+ // Type-safe icon name unions
238
+ type AllIconNames = FinanceIconName | OfficeIconName | HRIconName | ProjectIconName;
239
+ ```
240
+
241
+ ## License
242
+
243
+ MIT © Nice2Dev
@@ -0,0 +1,59 @@
1
+ /**
2
+ * @file accounting.tsx
3
+ * @module @nice2dev/icons-business
4
+ * @description Business Domain Icons — Accounting category
5
+ *
6
+ * Icons for accounting, finance, and bookkeeping:
7
+ * ledger, journal, balance-sheet, invoice, receipt, tax,
8
+ * audit, depreciation, amortization, accounts-payable, accounts-receivable,
9
+ * trial-balance, cash-flow, profit-loss, general-ledger
10
+ */
11
+ /** Ledger icon - bound accounting book */
12
+ export declare const LedgerIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
13
+ /** Journal icon - daily accounting journal */
14
+ export declare const JournalIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
15
+ /** Balance Sheet icon - financial statement */
16
+ export declare const BalanceSheetIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
17
+ /** Invoice icon - billing document */
18
+ export declare const InvoiceIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
19
+ /** Receipt icon - payment receipt */
20
+ export declare const ReceiptIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
21
+ /** Tax icon - tax document/form */
22
+ export declare const TaxIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
23
+ /** Audit icon - compliance audit */
24
+ export declare const AuditIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
25
+ /** Depreciation icon - asset depreciation */
26
+ export declare const DepreciationIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
27
+ /** Amortization icon - loan/intangible amortization */
28
+ export declare const AmortizationIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
29
+ /** Accounts Payable icon - money owed */
30
+ export declare const AccountsPayableIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
31
+ /** Accounts Receivable icon - money to collect */
32
+ export declare const AccountsReceivableIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
33
+ /** Trial Balance icon - accounting verification */
34
+ export declare const TrialBalanceIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
35
+ /** Cash Flow icon - money movement */
36
+ export declare const CashFlowIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
37
+ /** Profit Loss icon - income statement */
38
+ export declare const ProfitLossIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
39
+ /** General Ledger icon - main accounting record */
40
+ export declare const GeneralLedgerIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
41
+ export declare const accountingIcons: {
42
+ readonly LedgerIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
43
+ readonly JournalIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
44
+ readonly BalanceSheetIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
45
+ readonly InvoiceIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
46
+ readonly ReceiptIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
47
+ readonly TaxIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
48
+ readonly AuditIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
49
+ readonly DepreciationIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
50
+ readonly AmortizationIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
51
+ readonly AccountsPayableIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
52
+ readonly AccountsReceivableIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
53
+ readonly TrialBalanceIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
54
+ readonly CashFlowIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
55
+ readonly ProfitLossIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
56
+ readonly GeneralLedgerIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
57
+ };
58
+ export type AccountingIconName = keyof typeof accountingIcons;
59
+ //# sourceMappingURL=accounting.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"accounting.d.ts","sourceRoot":"","sources":["../src/accounting.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAQH,0CAA0C;AAC1C,eAAO,MAAM,UAAU,+HAsBrB,CAAC;AAEH,8CAA8C;AAC9C,eAAO,MAAM,WAAW,+HAgDtB,CAAC;AAEH,+CAA+C;AAC/C,eAAO,MAAM,gBAAgB,+HAgF3B,CAAC;AAMH,sCAAsC;AACtC,eAAO,MAAM,WAAW,+HA6BtB,CAAC;AAEH,qCAAqC;AACrC,eAAO,MAAM,WAAW,+HAoCtB,CAAC;AAMH,mCAAmC;AACnC,eAAO,MAAM,OAAO,+HAqClB,CAAC;AAEH,oCAAoC;AACpC,eAAO,MAAM,SAAS,+HA0DpB,CAAC;AAMH,6CAA6C;AAC7C,eAAO,MAAM,gBAAgB,+HAkC3B,CAAC;AAEH,uDAAuD;AACvD,eAAO,MAAM,gBAAgB,+HA8B3B,CAAC;AAMH,yCAAyC;AACzC,eAAO,MAAM,mBAAmB,+HAuC9B,CAAC;AAEH,kDAAkD;AAClD,eAAO,MAAM,sBAAsB,+HAuCjC,CAAC;AAMH,mDAAmD;AACnD,eAAO,MAAM,gBAAgB,+HAmD3B,CAAC;AAEH,sCAAsC;AACtC,eAAO,MAAM,YAAY,+HA6BvB,CAAC;AAEH,0CAA0C;AAC1C,eAAO,MAAM,cAAc,+HA+BzB,CAAC;AAEH,mDAAmD;AACnD,eAAO,MAAM,iBAAiB,+HAqC5B,CAAC;AAMH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;CAgBlB,CAAC;AAEX,MAAM,MAAM,kBAAkB,GAAG,MAAM,OAAO,eAAe,CAAC"}
@@ -0,0 +1,68 @@
1
+ import { default as React } from 'react';
2
+ import { BusinessIconProps } from './types';
3
+ /** Dashboard icon */
4
+ export declare const DashboardIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
5
+ /** KPI icon */
6
+ export declare const KPIIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
7
+ /** Widget icon */
8
+ export declare const WidgetIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
9
+ /** Real-time data icon */
10
+ export declare const RealTimeDataIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
11
+ /** Area chart icon */
12
+ export declare const AreaChartIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
13
+ /** Scatter plot icon */
14
+ export declare const ScatterPlotIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
15
+ /** Bubble chart icon */
16
+ export declare const BubbleChartIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
17
+ /** Donut chart icon */
18
+ export declare const DonutChartIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
19
+ /** Treemap icon */
20
+ export declare const TreemapIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
21
+ /** Heatmap icon */
22
+ export declare const HeatmapIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
23
+ /** Metric card icon */
24
+ export declare const MetricCardIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
25
+ /** Growth metric icon */
26
+ export declare const GrowthMetricIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
27
+ /** Decline metric icon */
28
+ export declare const DeclineMetricIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
29
+ /** Target/Goal icon */
30
+ export declare const TargetGoalIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
31
+ /** Benchmark icon */
32
+ export declare const BenchmarkIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
33
+ /** Report icon */
34
+ export declare const AnalyticsReportIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
35
+ /** Insights icon */
36
+ export declare const InsightsIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
37
+ /** Trend analysis icon */
38
+ export declare const TrendAnalysisIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
39
+ /** Comparison icon */
40
+ export declare const ComparisonIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
41
+ /** Data filter icon */
42
+ export declare const DataFilterIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
43
+ /** Data export icon */
44
+ export declare const DataExportIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
45
+ /** Data import icon */
46
+ export declare const DataImportIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
47
+ /** Data refresh icon */
48
+ export declare const DataRefreshIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
49
+ /** BI cube icon */
50
+ export declare const BICubeIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
51
+ /** Data warehouse icon */
52
+ export declare const DataWarehouseIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
53
+ /** Predictive analytics icon */
54
+ export declare const PredictiveAnalyticsIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
55
+ /** Digital twin icon - mirrored object with data */
56
+ export declare const DigitalTwinIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
57
+ /** Algorithm icon - decision tree / flowchart nodes */
58
+ export declare const AlgorithmIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
59
+ /** Prediction icon - crystal ball with future chart */
60
+ export declare const PredictionIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
61
+ /** Data narrative icon - book with chart */
62
+ export declare const DataNarrativeIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
63
+ /** Meeting ROI icon - meeting with dollar */
64
+ export declare const MeetingROIIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
65
+ /** Process debt icon - tangled workflow */
66
+ export declare const ProcessDebtIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
67
+ export type AnalyticsIconName = 'Dashboard' | 'KPI' | 'Widget' | 'RealTimeData' | 'AreaChart' | 'ScatterPlot' | 'BubbleChart' | 'DonutChart' | 'Treemap' | 'Heatmap' | 'MetricCard' | 'GrowthMetric' | 'DeclineMetric' | 'TargetGoal' | 'Benchmark' | 'AnalyticsReport' | 'Insights' | 'TrendAnalysis' | 'Comparison' | 'DataFilter' | 'DataExport' | 'DataImport' | 'DataRefresh' | 'BICube' | 'DataWarehouse' | 'PredictiveAnalytics';
68
+ //# sourceMappingURL=analytics.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"analytics.d.ts","sourceRoot":"","sources":["../src/analytics.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAMjD,qBAAqB;AACrB,eAAO,MAAM,aAAa,yFA+CzB,CAAC;AAEF,eAAe;AACf,eAAO,MAAM,OAAO,yFAuBnB,CAAC;AAEF,kBAAkB;AAClB,eAAO,MAAM,UAAU,yFAyCtB,CAAC;AAEF,0BAA0B;AAC1B,eAAO,MAAM,gBAAgB,yFA4B5B,CAAC;AAMF,sBAAsB;AACtB,eAAO,MAAM,aAAa,yFAkBzB,CAAC;AAEF,wBAAwB;AACxB,eAAO,MAAM,eAAe,yFAe3B,CAAC;AAEF,wBAAwB;AACxB,eAAO,MAAM,eAAe,yFA0C3B,CAAC;AAEF,uBAAuB;AACvB,eAAO,MAAM,cAAc,yFA4B1B,CAAC;AAEF,mBAAmB;AACnB,eAAO,MAAM,WAAW,yFA6EvB,CAAC;AAEF,mBAAmB;AACnB,eAAO,MAAM,WAAW,yFAkBvB,CAAC;AAMF,uBAAuB;AACvB,eAAO,MAAM,cAAc,yFAoC1B,CAAC;AAEF,yBAAyB;AACzB,eAAO,MAAM,gBAAgB,yFAkB5B,CAAC;AAEF,0BAA0B;AAC1B,eAAO,MAAM,iBAAiB,yFAkB7B,CAAC;AAEF,uBAAuB;AACvB,eAAO,MAAM,cAAc,yFAwB1B,CAAC;AAEF,qBAAqB;AACrB,eAAO,MAAM,aAAa,yFAgDzB,CAAC;AAMF,kBAAkB;AAClB,eAAO,MAAM,mBAAmB,yFA+B/B,CAAC;AAEF,oBAAoB;AACpB,eAAO,MAAM,YAAY,yFAoBxB,CAAC;AAEF,0BAA0B;AAC1B,eAAO,MAAM,iBAAiB,yFA4B7B,CAAC;AAEF,sBAAsB;AACtB,eAAO,MAAM,cAAc,yFAqC1B,CAAC;AAMF,uBAAuB;AACvB,eAAO,MAAM,cAAc,yFAiB1B,CAAC;AAEF,uBAAuB;AACvB,eAAO,MAAM,cAAc,yFA8B1B,CAAC;AAEF,uBAAuB;AACvB,eAAO,MAAM,cAAc,yFA8B1B,CAAC;AAEF,wBAAwB;AACxB,eAAO,MAAM,eAAe,yFAsC3B,CAAC;AAMF,mBAAmB;AACnB,eAAO,MAAM,UAAU,yFAuBtB,CAAC;AAEF,0BAA0B;AAC1B,eAAO,MAAM,iBAAiB,yFAqB7B,CAAC;AAEF,gCAAgC;AAChC,eAAO,MAAM,uBAAuB,yFAmCnC,CAAC;AAMF,oDAAoD;AACpD,eAAO,MAAM,eAAe,yFA0C3B,CAAC;AAEF,uDAAuD;AACvD,eAAO,MAAM,aAAa,yFA2CzB,CAAC;AAEF,uDAAuD;AACvD,eAAO,MAAM,cAAc,yFA2C1B,CAAC;AAEF,4CAA4C;AAC5C,eAAO,MAAM,iBAAiB,yFAqC7B,CAAC;AAEF,6CAA6C;AAC7C,eAAO,MAAM,cAAc,yFAwB1B,CAAC;AAEF,2CAA2C;AAC3C,eAAO,MAAM,eAAe,yFAiB3B,CAAC;AAGF,MAAM,MAAM,iBAAiB,GACzB,WAAW,GACX,KAAK,GACL,QAAQ,GACR,cAAc,GACd,WAAW,GACX,aAAa,GACb,aAAa,GACb,YAAY,GACZ,SAAS,GACT,SAAS,GACT,YAAY,GACZ,cAAc,GACd,eAAe,GACf,YAAY,GACZ,WAAW,GACX,iBAAiB,GACjB,UAAU,GACV,eAAe,GACf,YAAY,GACZ,YAAY,GACZ,YAAY,GACZ,YAAY,GACZ,aAAa,GACb,QAAQ,GACR,eAAe,GACf,qBAAqB,CAAC"}
@@ -0,0 +1,50 @@
1
+ import { default as React } from 'react';
2
+ import { BusinessIconProps } from './types';
3
+ /** Meeting icon */
4
+ export declare const MeetingIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
5
+ /** Video conference icon */
6
+ export declare const VideoConferenceIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
7
+ /** Conference room icon */
8
+ export declare const ConferenceRoomIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
9
+ /** Webinar icon */
10
+ export declare const WebinarIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
11
+ /** Presentation icon */
12
+ export declare const PresentationIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
13
+ /** Phone call icon */
14
+ export declare const PhoneCallIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
15
+ /** Incoming call icon */
16
+ export declare const IncomingCallIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
17
+ /** Outgoing call icon */
18
+ export declare const OutgoingCallIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
19
+ /** Missed call icon */
20
+ export declare const MissedCallIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
21
+ /** Conference call icon */
22
+ export declare const ConferenceCallIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
23
+ /** Business email icon */
24
+ export declare const BusinessEmailIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
25
+ /** Instant message icon */
26
+ export declare const InstantMessageIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
27
+ /** Inbox icon */
28
+ export declare const InboxIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
29
+ /** Outbox icon */
30
+ export declare const OutboxIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
31
+ /** Newsletter icon */
32
+ export declare const NewsletterIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
33
+ /** Team chat icon */
34
+ export declare const TeamChatIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
35
+ /** Discussion icon */
36
+ export declare const DiscussionIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
37
+ /** Feedback icon */
38
+ export declare const FeedbackIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
39
+ /** Announcement icon */
40
+ export declare const AnnouncementIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
41
+ /** Schedule meeting icon */
42
+ export declare const ScheduleMeetingIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
43
+ /** Agenda icon */
44
+ export declare const AgendaIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
45
+ /** RSVP icon */
46
+ export declare const RSVPIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
47
+ /** Minutes icon */
48
+ export declare const MinutesIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
49
+ export type CommunicationIconName = 'Meeting' | 'VideoConference' | 'ConferenceRoom' | 'Webinar' | 'Presentation' | 'PhoneCall' | 'IncomingCall' | 'OutgoingCall' | 'MissedCall' | 'ConferenceCall' | 'BusinessEmail' | 'InstantMessage' | 'Inbox' | 'Outbox' | 'Newsletter' | 'TeamChat' | 'Discussion' | 'Feedback' | 'Announcement' | 'ScheduleMeeting' | 'Agenda' | 'RSVP' | 'Minutes';
50
+ //# sourceMappingURL=communication.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"communication.d.ts","sourceRoot":"","sources":["../src/communication.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAMjD,mBAAmB;AACnB,eAAO,MAAM,WAAW,yFA0DvB,CAAC;AAEF,4BAA4B;AAC5B,eAAO,MAAM,mBAAmB,yFAyD/B,CAAC;AAEF,2BAA2B;AAC3B,eAAO,MAAM,kBAAkB,yFAyC9B,CAAC;AAEF,mBAAmB;AACnB,eAAO,MAAM,WAAW,yFAqDvB,CAAC;AAEF,wBAAwB;AACxB,eAAO,MAAM,gBAAgB,yFAwB5B,CAAC;AAMF,sBAAsB;AACtB,eAAO,MAAM,aAAa,yFAYzB,CAAC;AAEF,yBAAyB;AACzB,eAAO,MAAM,gBAAgB,yFAoB5B,CAAC;AAEF,yBAAyB;AACzB,eAAO,MAAM,gBAAgB,yFAe5B,CAAC;AAEF,uBAAuB;AACvB,eAAO,MAAM,cAAc,yFAe1B,CAAC;AAEF,2BAA2B;AAC3B,eAAO,MAAM,kBAAkB,yFAiB9B,CAAC;AAMF,0BAA0B;AAC1B,eAAO,MAAM,iBAAiB,yFA4B7B,CAAC;AAEF,2BAA2B;AAC3B,eAAO,MAAM,kBAAkB,yFAgB9B,CAAC;AAEF,iBAAiB;AACjB,eAAO,MAAM,SAAS,yFAmBrB,CAAC;AAEF,kBAAkB;AAClB,eAAO,MAAM,UAAU,yFAgBtB,CAAC;AAEF,sBAAsB;AACtB,eAAO,MAAM,cAAc,yFAqD1B,CAAC;AAMF,qBAAqB;AACrB,eAAO,MAAM,YAAY,yFAyBxB,CAAC;AAEF,sBAAsB;AACtB,eAAO,MAAM,cAAc,yFAyC1B,CAAC;AAEF,oBAAoB;AACpB,eAAO,MAAM,YAAY,yFA2BxB,CAAC;AAEF,wBAAwB;AACxB,eAAO,MAAM,gBAAgB,yFA4B5B,CAAC;AAMF,4BAA4B;AAC5B,eAAO,MAAM,mBAAmB,yFA8B/B,CAAC;AAEF,kBAAkB;AAClB,eAAO,MAAM,UAAU,yFA8BtB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,QAAQ,yFAqCpB,CAAC;AAEF,mBAAmB;AACnB,eAAO,MAAM,WAAW,yFA4BvB,CAAC;AAGF,MAAM,MAAM,qBAAqB,GAC7B,SAAS,GACT,iBAAiB,GACjB,gBAAgB,GAChB,SAAS,GACT,cAAc,GACd,WAAW,GACX,cAAc,GACd,cAAc,GACd,YAAY,GACZ,gBAAgB,GAChB,eAAe,GACf,gBAAgB,GAChB,OAAO,GACP,QAAQ,GACR,YAAY,GACZ,UAAU,GACV,YAAY,GACZ,UAAU,GACV,cAAc,GACd,iBAAiB,GACjB,QAAQ,GACR,MAAM,GACN,SAAS,CAAC"}
@@ -0,0 +1,37 @@
1
+ import { default as React } from 'react';
2
+ import { BusinessIconProps, BusinessIconAnimation, CreateBusinessIconOptions } from './types';
3
+ export declare function getBusinessAnimation(animation: BusinessIconAnimation, duration: string): React.ReactNode;
4
+ /** Simplified options for creating icons with inline path */
5
+ export interface SimpleIconOptions {
6
+ /** Icon name (will be used as displayName with 'Icon' suffix) */
7
+ name: string;
8
+ /** Icon category for documentation */
9
+ category?: string;
10
+ /** Keywords for search/documentation */
11
+ keywords?: string[];
12
+ /** Default animation type */
13
+ defaultAnimation?: BusinessIconAnimation;
14
+ /** The JSX path content */
15
+ path: React.ReactNode;
16
+ /** SVG viewBox (default: '0 0 24 24') */
17
+ viewBox?: string;
18
+ /** Default size in pixels */
19
+ defaultSize?: number;
20
+ /** Default color */
21
+ defaultColor?: string;
22
+ /** Default accent color */
23
+ defaultAccentColor?: string;
24
+ /** Default variant */
25
+ defaultVariant?: 'filled' | 'outlined' | 'duotone';
26
+ }
27
+ export declare function createBusinessIcon(options: SimpleIconOptions): ReturnType<typeof createBusinessIconImpl>;
28
+ export declare function createBusinessIcon(renderIcon: (props: BusinessIconProps) => React.ReactNode, options: CreateBusinessIconOptions): ReturnType<typeof createBusinessIconImpl>;
29
+ declare function createBusinessIconImpl(renderIcon: (props: BusinessIconProps) => React.ReactNode, options: CreateBusinessIconOptions, defaultAnimation?: BusinessIconAnimation): React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
30
+ export declare const iconDefaults: {
31
+ viewBox: string;
32
+ size: number;
33
+ color: string;
34
+ strokeWidth: number;
35
+ };
36
+ export {};
37
+ //# sourceMappingURL=createBusinessIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createBusinessIcon.d.ts","sourceRoot":"","sources":["../src/createBusinessIcon.tsx"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAqB,MAAM,OAAO,CAAC;AAE1C,OAAO,KAAK,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,yBAAyB,EAAE,MAAM,SAAS,CAAC;AAUnG,wBAAgB,oBAAoB,CAClC,SAAS,EAAE,qBAAqB,EAChC,QAAQ,EAAE,MAAM,GACf,KAAK,CAAC,SAAS,CA2FjB;AAID,6DAA6D;AAC7D,MAAM,WAAW,iBAAiB;IAChC,iEAAiE;IACjE,IAAI,EAAE,MAAM,CAAC;IACb,sCAAsC;IACtC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,wCAAwC;IACxC,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,6BAA6B;IAC7B,gBAAgB,CAAC,EAAE,qBAAqB,CAAC;IACzC,2BAA2B;IAC3B,IAAI,EAAE,KAAK,CAAC,SAAS,CAAC;IACtB,yCAAyC;IACzC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,6BAA6B;IAC7B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,oBAAoB;IACpB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,2BAA2B;IAC3B,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,sBAAsB;IACtB,cAAc,CAAC,EAAE,QAAQ,GAAG,UAAU,GAAG,SAAS,CAAC;CACpD;AAGD,wBAAgB,kBAAkB,CAChC,OAAO,EAAE,iBAAiB,GACzB,UAAU,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAC7C,wBAAgB,kBAAkB,CAChC,UAAU,EAAE,CAAC,KAAK,EAAE,iBAAiB,KAAK,KAAK,CAAC,SAAS,EACzD,OAAO,EAAE,yBAAyB,GACjC,UAAU,CAAC,OAAO,sBAAsB,CAAC,CAAC;AA6B7C,iBAAS,sBAAsB,CAC7B,UAAU,EAAE,CAAC,KAAK,EAAE,iBAAiB,KAAK,KAAK,CAAC,SAAS,EACzD,OAAO,EAAE,yBAAyB,EAClC,gBAAgB,CAAC,EAAE,qBAAqB,2FAmEzC;AAID,eAAO,MAAM,YAAY;;;;;CAKxB,CAAC"}
package/dist/crm.d.ts ADDED
@@ -0,0 +1,49 @@
1
+ /**
2
+ * @file crm.tsx
3
+ * @module @nice2dev/icons-business
4
+ * @description Business Domain Icons — CRM (Customer Relationship Management) category
5
+ *
6
+ * Icons for customer relationship management:
7
+ * customer, lead, opportunity, deal, pipeline, campaign,
8
+ * contact, account, activity, touchpoint, segment, nurture
9
+ */
10
+ /** Customer icon - individual customer */
11
+ export declare const CustomerIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
12
+ /** Lead icon - sales lead */
13
+ export declare const LeadIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
14
+ /** Opportunity icon - sales opportunity */
15
+ export declare const OpportunityIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
16
+ /** Deal icon - closed deal */
17
+ export declare const DealIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
18
+ /** Pipeline icon - sales pipeline */
19
+ export declare const PipelineIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
20
+ /** Campaign icon - marketing campaign */
21
+ export declare const CampaignIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
22
+ /** Contact icon - CRM contact record */
23
+ export declare const ContactIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
24
+ /** Account icon - company/organization account */
25
+ export declare const AccountIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
26
+ /** Activity icon - CRM activity/task */
27
+ export declare const ActivityIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
28
+ /** Touchpoint icon - customer touchpoint */
29
+ export declare const TouchpointIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
30
+ /** Segment icon - customer segment */
31
+ export declare const SegmentIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
32
+ /** Nurture icon - lead nurturing */
33
+ export declare const NurtureIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
34
+ export declare const crmIcons: {
35
+ readonly CustomerIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
36
+ readonly LeadIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
37
+ readonly OpportunityIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
38
+ readonly DealIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
39
+ readonly PipelineIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
40
+ readonly CampaignIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
41
+ readonly ContactIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
42
+ readonly AccountIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
43
+ readonly ActivityIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
44
+ readonly TouchpointIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
45
+ readonly SegmentIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
46
+ readonly NurtureIcon: import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>;
47
+ };
48
+ export type CRMIconName = keyof typeof crmIcons;
49
+ //# sourceMappingURL=crm.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"crm.d.ts","sourceRoot":"","sources":["../src/crm.tsx"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAQH,0CAA0C;AAC1C,eAAO,MAAM,YAAY,+HAkBvB,CAAC;AAEH,6BAA6B;AAC7B,eAAO,MAAM,QAAQ,+HAgCnB,CAAC;AAEH,2CAA2C;AAC3C,eAAO,MAAM,eAAe,+HAoD1B,CAAC;AAEH,8BAA8B;AAC9B,eAAO,MAAM,QAAQ,+HA+CnB,CAAC;AAMH,qCAAqC;AACrC,eAAO,MAAM,YAAY,+HA6BvB,CAAC;AAEH,yCAAyC;AACzC,eAAO,MAAM,YAAY,+HAyCvB,CAAC;AAEH,wCAAwC;AACxC,eAAO,MAAM,WAAW,+HAsBtB,CAAC;AAEH,kDAAkD;AAClD,eAAO,MAAM,WAAW,+HAyBtB,CAAC;AAMH,wCAAwC;AACxC,eAAO,MAAM,YAAY,+HAgEvB,CAAC;AAEH,4CAA4C;AAC5C,eAAO,MAAM,cAAc,+HAyBzB,CAAC;AAEH,sCAAsC;AACtC,eAAO,MAAM,WAAW,+HAwBtB,CAAC;AAEH,oCAAoC;AACpC,eAAO,MAAM,WAAW,+HAgDtB,CAAC;AAMH,eAAO,MAAM,QAAQ;;;;;;;;;;;;;CAaX,CAAC;AAEX,MAAM,MAAM,WAAW,GAAG,MAAM,OAAO,QAAQ,CAAC"}
@@ -0,0 +1,66 @@
1
+ import { default as React } from 'react';
2
+ import { BusinessIconProps } from './types';
3
+ /** Shopping cart icon */
4
+ export declare const ShoppingCartIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
5
+ /** Add to cart icon */
6
+ export declare const AddToCartIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
7
+ /** Shopping bag icon */
8
+ export declare const ShoppingBagIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
9
+ /** Wishlist icon */
10
+ export declare const WishlistIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
11
+ /** Product icon */
12
+ export declare const ProductIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
13
+ /** Category icon */
14
+ export declare const CategoryIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
15
+ /** Checkout icon */
16
+ export declare const CheckoutIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
17
+ /** Credit card icon */
18
+ export declare const CreditCardIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
19
+ /** Payment icon */
20
+ export declare const PaymentIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
21
+ /** Wallet icon */
22
+ export declare const WalletIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
23
+ /** Receipt icon */
24
+ export declare const ReceiptIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
25
+ /** Refund icon */
26
+ export declare const RefundIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
27
+ /** Order icon */
28
+ export declare const OrderIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
29
+ /** Pending order icon */
30
+ export declare const PendingOrderIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
31
+ /** Shipped icon */
32
+ export declare const ShippedIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
33
+ /** Delivered icon */
34
+ export declare const DeliveredIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
35
+ /** Return icon */
36
+ export declare const ReturnIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
37
+ /** Inventory icon */
38
+ export declare const InventoryIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
39
+ /** In stock icon */
40
+ export declare const InStockIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
41
+ /** Out of stock icon */
42
+ export declare const OutOfStockIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
43
+ /** Low stock alert icon */
44
+ export declare const LowStockIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
45
+ /** Price tag icon */
46
+ export declare const PriceTagIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
47
+ /** Discount icon */
48
+ export declare const DiscountIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
49
+ /** Sale badge icon */
50
+ export declare const SaleBadgeIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
51
+ /** Compare prices icon */
52
+ export declare const ComparePricesIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
53
+ /** Star rating icon */
54
+ export declare const StarRatingIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
55
+ /** Review icon */
56
+ export declare const ReviewIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
57
+ /** Escrow icon - secure envelope with money */
58
+ export declare const EscrowIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
59
+ /** Freelancer icon - person with laptop and money */
60
+ export declare const FreelancerIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
61
+ /** Auction icon - gavel/hammer */
62
+ export declare const AuctionIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
63
+ /** Patronage icon - hand giving coin (supporting creator) */
64
+ export declare const PatronageIcon: React.ForwardRefExoticComponent<BusinessIconProps & React.RefAttributes<SVGSVGElement>>;
65
+ export type EcommerceIconName = 'ShoppingCart' | 'AddToCart' | 'ShoppingBag' | 'Wishlist' | 'Product' | 'Category' | 'Checkout' | 'CreditCard' | 'Payment' | 'Wallet' | 'Receipt' | 'Refund' | 'Order' | 'PendingOrder' | 'Shipped' | 'Delivered' | 'Return' | 'Inventory' | 'InStock' | 'OutOfStock' | 'LowStock' | 'PriceTag' | 'Discount' | 'SaleBadge' | 'ComparePrices' | 'StarRating' | 'Review';
66
+ //# sourceMappingURL=ecommerce.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ecommerce.d.ts","sourceRoot":"","sources":["../src/ecommerce.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAMjD,yBAAyB;AACzB,eAAO,MAAM,gBAAgB,yFAkB5B,CAAC;AAEF,uBAAuB;AACvB,eAAO,MAAM,aAAa,yFAkBzB,CAAC;AAEF,wBAAwB;AACxB,eAAO,MAAM,eAAe,yFAe3B,CAAC;AAEF,oBAAoB;AACpB,eAAO,MAAM,YAAY,yFAgBxB,CAAC;AAEF,mBAAmB;AACnB,eAAO,MAAM,WAAW,yFAwCvB,CAAC;AAEF,oBAAoB;AACpB,eAAO,MAAM,YAAY,yFAmDxB,CAAC;AAMF,oBAAoB;AACpB,eAAO,MAAM,YAAY,yFAuBxB,CAAC;AAEF,uBAAuB;AACvB,eAAO,MAAM,cAAc,yFA2B1B,CAAC;AAEF,mBAAmB;AACnB,eAAO,MAAM,WAAW,yFA2BvB,CAAC;AAEF,kBAAkB;AAClB,eAAO,MAAM,UAAU,yFAqBtB,CAAC;AAEF,mBAAmB;AACnB,eAAO,MAAM,WAAW,yFAyBvB,CAAC;AAEF,kBAAkB;AAClB,eAAO,MAAM,UAAU,yFAgCtB,CAAC;AAMF,iBAAiB;AACjB,eAAO,MAAM,SAAS,yFA+BrB,CAAC;AAEF,yBAAyB;AACzB,eAAO,MAAM,gBAAgB,yFAkC5B,CAAC;AAEF,mBAAmB;AACnB,eAAO,MAAM,WAAW,yFA8BvB,CAAC;AAEF,qBAAqB;AACrB,eAAO,MAAM,aAAa,yFAsBzB,CAAC;AAEF,kBAAkB;AAClB,eAAO,MAAM,UAAU,yFA6BtB,CAAC;AAMF,qBAAqB;AACrB,eAAO,MAAM,aAAa,yFA+CzB,CAAC;AAEF,oBAAoB;AACpB,eAAO,MAAM,WAAW,yFAwBvB,CAAC;AAEF,wBAAwB;AACxB,eAAO,MAAM,cAAc,yFAmD1B,CAAC;AAEF,2BAA2B;AAC3B,eAAO,MAAM,YAAY,yFA0BxB,CAAC;AAMF,qBAAqB;AACrB,eAAO,MAAM,YAAY,yFAyBxB,CAAC;AAEF,oBAAoB;AACpB,eAAO,MAAM,YAAY,yFAwBxB,CAAC;AAEF,sBAAsB;AACtB,eAAO,MAAM,aAAa,yFAiBzB,CAAC;AAEF,0BAA0B;AAC1B,eAAO,MAAM,iBAAiB,yFAqC7B,CAAC;AAMF,uBAAuB;AACvB,eAAO,MAAM,cAAc,yFAiC1B,CAAC;AAEF,kBAAkB;AAClB,eAAO,MAAM,UAAU,yFAiCtB,CAAC;AAMF,+CAA+C;AAC/C,eAAO,MAAM,UAAU,yFAiCtB,CAAC;AAEF,qDAAqD;AACrD,eAAO,MAAM,cAAc,yFAyB1B,CAAC;AAMF,kCAAkC;AAClC,eAAO,MAAM,WAAW,yFAsCvB,CAAC;AAEF,6DAA6D;AAC7D,eAAO,MAAM,aAAa,yFAgCzB,CAAC;AAGF,MAAM,MAAM,iBAAiB,GACzB,cAAc,GACd,WAAW,GACX,aAAa,GACb,UAAU,GACV,SAAS,GACT,UAAU,GACV,UAAU,GACV,YAAY,GACZ,SAAS,GACT,QAAQ,GACR,SAAS,GACT,QAAQ,GACR,OAAO,GACP,cAAc,GACd,SAAS,GACT,WAAW,GACX,QAAQ,GACR,WAAW,GACX,SAAS,GACT,YAAY,GACZ,UAAU,GACV,UAAU,GACV,UAAU,GACV,WAAW,GACX,eAAe,GACf,YAAY,GACZ,QAAQ,CAAC"}