@leapdev/gui-icons 3.0.44 → 3.0.46
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/README.md +2 -2
- package/dist/app.js +227 -18
- package/dist/icons/leap-web/lock-20.svg +3 -3
- package/dist/icons/leap-web/notification-bell-20.svg +2 -2
- package/dist/icons/sprite-leap-web.svg +1 -1
- package/dist/illustrations/sirius/2FA.svg +49 -0
- package/dist/illustrations/sirius/Aide.svg +76 -0
- package/dist/illustrations/sirius/AnticipatedPayments-Euro.svg +101 -8
- package/dist/illustrations/sirius/AnticipatedPayments-Pound.svg +101 -8
- package/dist/illustrations/sirius/AnticipatedPayments.svg +101 -8
- package/dist/illustrations/sirius/BarChart.svg +129 -0
- package/dist/illustrations/sirius/CreditLedger-Euro.svg +115 -8
- package/dist/illustrations/sirius/CreditLedger-Pound.svg +115 -8
- package/dist/illustrations/sirius/CreditLedger.svg +115 -8
- package/dist/illustrations/sirius/Data.svg +69 -0
- package/dist/illustrations/sirius/Default.svg +55 -6
- package/dist/illustrations/sirius/Download.svg +77 -0
- package/dist/illustrations/sirius/Email.svg +68 -0
- package/dist/illustrations/sirius/Favourite.svg +71 -0
- package/dist/illustrations/sirius/Folder.svg +47 -0
- package/dist/illustrations/sirius/Generator.svg +76 -0
- package/dist/illustrations/sirius/Inbox.svg +71 -0
- package/dist/illustrations/sirius/NoCorrespondance.svg +116 -8
- package/dist/illustrations/sirius/NoCorrespondence.svg +117 -0
- package/dist/illustrations/sirius/NoUnscheduledCriticalDates.svg +104 -8
- package/dist/illustrations/sirius/NoUnscheduledTasks.svg +106 -0
- package/dist/illustrations/sirius/NoUnsheduledTasks.svg +105 -8
- package/dist/illustrations/sirius/PaymentsAndDebtors-Euro.svg +140 -8
- package/dist/illustrations/sirius/PaymentsAndDebtors-Pound.svg +140 -8
- package/dist/illustrations/sirius/PaymentsAndDebtors.svg +140 -8
- package/dist/illustrations/sirius/PieChart.svg +80 -0
- package/dist/illustrations/sirius/PreviewUnavailable.svg +78 -0
- package/dist/illustrations/sirius/Reports.svg +60 -0
- package/dist/illustrations/sirius/RestrictedContent.svg +47 -0
- package/dist/illustrations/sirius/Risks.svg +69 -0
- package/dist/illustrations/sirius/Search.svg +96 -0
- package/dist/illustrations/sirius/SystemError.svg +58 -0
- package/dist/illustrations/sirius/TimeAndFees.svg +83 -8
- package/dist/illustrations/sirius/TrustFunds-Euro.svg +102 -8
- package/dist/illustrations/sirius/TrustFunds-Pound.svg +102 -8
- package/dist/illustrations/sirius/TrustFunds.svg +102 -8
- package/dist/illustrations/sprite-sirius-empty-states.svg +1 -1
- package/dist/index.js +19 -0
- package/package.json +1 -1
- package/CHANGELOG.md +0 -847
- package/dist/icons/.DS_Store +0 -0
package/README.md
CHANGED
|
@@ -120,7 +120,7 @@ Here is how you can run the example above on Stackblitz (https://stackblitz.com)
|
|
|
120
120
|
|
|
121
121
|
Here's an example of how to use individual SVG icons in a React application:
|
|
122
122
|
|
|
123
|
-
|
|
123
|
+
```jsx
|
|
124
124
|
import React from 'react';
|
|
125
125
|
import { FilledHistory, DesktopPin, DoctypeAudio } from '@leapdev/gui-icons';
|
|
126
126
|
|
|
@@ -135,7 +135,7 @@ export default function IconExample() {
|
|
|
135
135
|
</div>
|
|
136
136
|
);
|
|
137
137
|
}
|
|
138
|
-
|
|
138
|
+
```
|
|
139
139
|
|
|
140
140
|
In this example:
|
|
141
141
|
|