Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegWock committed Feb 23, 2023
1 parent 71337da commit 0045c59
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
32 changes: 16 additions & 16 deletions .size-snapshot.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
{
"react-local-toast.cjs.development.js": {
"bundled": 23250,
"minified": 12659,
"gzipped": 3811
"bundled": 23226,
"minified": 12641,
"gzipped": 3797
},
"react-local-toast.cjs.production.js": {
"bundled": 23250,
"minified": 12659,
"gzipped": 3811
"bundled": 23226,
"minified": 12641,
"gzipped": 3797
},
"react-local-toast.esm.js": {
"bundled": 21702,
"minified": 11366,
"gzipped": 3645,
"bundled": 21678,
"minified": 11348,
"gzipped": 3633,
"treeshaked": {
"rollup": {
"code": 169,
"import_statements": 169
},
"webpack": {
"code": 11045
"code": 11027
}
}
},
"react-local-toast.umd.development.js": {
"bundled": 108949,
"minified": 33947,
"gzipped": 10979
"bundled": 108921,
"minified": 33929,
"gzipped": 10969
},
"react-local-toast.umd.production.js": {
"bundled": 58421,
"minified": 20966,
"gzipped": 6878
"bundled": 58393,
"minified": 20948,
"gzipped": 6867
},
"internals.js": {
"bundled": 10559,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-local-toast",
"version": "1.2.0",
"version": "1.2.1",
"description": "Local toast helps you to provide feedback related to particular components on page",
"main": "dist/index.js",
"module": "dist/react-local-toast.esm.js",
Expand Down
2 changes: 1 addition & 1 deletion src/icons.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { ComponentProps, forwardRef } from "react";

export const IoIosCheckmarkCircle = forwardRef<SVGSVGElement, ComponentProps<"svg">>((props, ref) => {
return (<svg stroke="currentColor" data-test="yes" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg" ref={ref} {...props}><path d="M256 48C141.1 48 48 141.1 48 256s93.1 208 208 208 208-93.1 208-208S370.9 48 256 48zm106.5 150.5L228.8 332.8h-.1c-1.7 1.7-6.3 5.5-11.6 5.5-3.8 0-8.1-2.1-11.7-5.7l-56-56c-1.6-1.6-1.6-4.1 0-5.7l17.8-17.8c.8-.8 1.8-1.2 2.8-1.2 1 0 2 .4 2.8 1.2l44.4 44.4 122-122.9c.8-.8 1.8-1.2 2.8-1.2 1.1 0 2.1.4 2.8 1.2l17.5 18.1c1.8 1.7 1.8 4.2.2 5.8z"></path></svg>);
return (<svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg" ref={ref} {...props}><path d="M256 48C141.1 48 48 141.1 48 256s93.1 208 208 208 208-93.1 208-208S370.9 48 256 48zm106.5 150.5L228.8 332.8h-.1c-1.7 1.7-6.3 5.5-11.6 5.5-3.8 0-8.1-2.1-11.7-5.7l-56-56c-1.6-1.6-1.6-4.1 0-5.7l17.8-17.8c.8-.8 1.8-1.2 2.8-1.2 1 0 2 .4 2.8 1.2l44.4 44.4 122-122.9c.8-.8 1.8-1.2 2.8-1.2 1.1 0 2.1.4 2.8 1.2l17.5 18.1c1.8 1.7 1.8 4.2.2 5.8z"></path></svg>);
});

export const IoIosInformationCircle = forwardRef<SVGSVGElement, ComponentProps<"svg">>((props, ref) => {
Expand Down

0 comments on commit 0045c59

Please sign in to comment.