forstok-ui-lib 8.1.0 → 8.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forstok-ui-lib",
3
- "version": "8.1.0",
3
+ "version": "8.1.2",
4
4
  "description": "Forstok UI Components Library",
5
5
  "path": "dist",
6
6
  "main": "dist/index.js",
@@ -0,0 +1,2 @@
1
+ <?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
2
+ <svg fill="#429ddf" width="100%" height="100%" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M14.66 15.66A8 8 0 1 1 17 10h-2a6 6 0 1 0-1.76 4.24l1.42 1.42zM12 10h8l-4 4-4-4z"/></svg>
@@ -1,11 +1,12 @@
1
1
  import type { HTMLAttributes } from 'react';
2
2
  import LoadingComponent from '../loading';
3
3
  import { IconContainer } from './styles';
4
+ import { IconMode, IconName } from './type';
4
5
 
5
6
  type TIcon = HTMLAttributes<HTMLElement> & {
6
- $mode?: string
7
+ $mode?: IconMode
7
8
  $isLoading?: boolean
8
- $name: string
9
+ $name: IconName
9
10
  $width?: string | number
10
11
  };
11
12