rds-ui-system 2.3.1 → 2.3.2
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/lib/components/icons/iconMapping.d.ts +10 -0
- package/dist/rds-ui-system.es.js +478 -424
- package/dist/rds-ui-system.umd.js +490 -436
- package/package.json +1 -1
|
@@ -224,5 +224,15 @@ export declare const iconMapping: {
|
|
|
224
224
|
isDisabled: boolean,
|
|
225
225
|
bgFillColor: string,
|
|
226
226
|
) => import('react/jsx-runtime').JSX.Element
|
|
227
|
+
readonly Visibility: (
|
|
228
|
+
isOutlined: boolean,
|
|
229
|
+
isDisabled: boolean,
|
|
230
|
+
bgFillColor: string,
|
|
231
|
+
) => import('react/jsx-runtime').JSX.Element
|
|
232
|
+
readonly VisibilityOff: (
|
|
233
|
+
isOutlined: boolean,
|
|
234
|
+
isDisabled: boolean,
|
|
235
|
+
bgFillColor: string,
|
|
236
|
+
) => import('react/jsx-runtime').JSX.Element
|
|
227
237
|
}
|
|
228
238
|
export type IconName = keyof typeof iconMapping
|