@versini/ui-types 2.2.0 → 3.0.1

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 (2) hide show
  1. package/dist/index.d.ts +7 -4
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -329,10 +329,6 @@ declare namespace SvgIconTypes {
329
329
  * CSS class(es) to add to the main component wrapper.
330
330
  */
331
331
  className?: string;
332
- /**
333
- * CSS class(es) to add to the main component wrapper.
334
- */
335
- defaultClassName?: string;
336
332
  /**
337
333
  * Update the "fill" property of the SVG.
338
334
  * @default "currentColor"
@@ -344,6 +340,13 @@ declare namespace SvgIconTypes {
344
340
  * @default false
345
341
  */
346
342
  semantic?: boolean;
343
+ /**
344
+ * The size of the icon. This will set the width and height of the icon.
345
+ * It should be a valid Tailwind CSS size class, such as "size-6" or "size-px".
346
+ * It can also include breakpoints, such as "sm:size-6" or "md:size-px".
347
+ * @link https://tailwindcss.com/docs/size
348
+ */
349
+ size?: string;
347
350
  /**
348
351
  * The viewBox to use. If not provided, the default viewBox will be used.
349
352
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@versini/ui-types",
3
- "version": "2.2.0",
3
+ "version": "3.0.1",
4
4
  "license": "MIT",
5
5
  "author": "Arno Versini",
6
6
  "publishConfig": {
@@ -32,5 +32,5 @@
32
32
  "react": "^18.3.1 || ^19.0.0",
33
33
  "react-dom": "^18.3.1 || ^19.0.0"
34
34
  },
35
- "gitHead": "914bac4e3074de68e54cd84fe91e6fe50c38b554"
35
+ "gitHead": "c83e1c1ff281bb8d84e899777a6d055c74451090"
36
36
  }