@sankyu/react-circle-flags 1.5.4 → 1.5.5
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/README.zh.md +2 -2
- package/dist/flags/es-vc.cjs +1 -0
- package/dist/flags/es-vc.mjs +1 -0
- package/dist/index.cjs +2 -2
- package/dist/index.d.ts +3 -1
- package/dist/index.mjs +2 -2
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
<a href="https://react-circle-flags.js.org/">
|
|
3
|
-
<img src="https://raw.githubusercontent.com/SanKyu-Lab/react-circle-flags/main/
|
|
3
|
+
<img src="https://raw.githubusercontent.com/SanKyu-Lab/react-circle-flags/main/.github/assets/favicon.svg" alt="@sankyu/react-circle-flags" width="120" height="120" />
|
|
4
4
|
</a>
|
|
5
5
|
</div>
|
|
6
6
|
|
|
@@ -36,7 +36,7 @@ Perfect for applications that need fast, crisp country flags without external im
|
|
|
36
36
|
|
|
37
37
|
## :world_map: Live Demo
|
|
38
38
|
|
|
39
|
-
[](https://codesandbox.io/p/sandbox/nyy6vp) [](https://stackblitz.com/
|
|
39
|
+
[](https://codesandbox.io/p/sandbox/nyy6vp) [](https://stackblitz.com/fork/github/SanKyu-Lab/circle-flags-ui/tree/main/examples/example-react?file=src%2FApp.tsx&terminal=dev)
|
|
40
40
|
|
|
41
41
|
## ✨ Key Features
|
|
42
42
|
|
package/README.zh.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
<a href="https://react-circle-flags.js.org/">
|
|
3
|
-
<img src="https://raw.githubusercontent.com/SanKyu-Lab/react-circle-flags/main/
|
|
3
|
+
<img src="https://raw.githubusercontent.com/SanKyu-Lab/react-circle-flags/main/.github/assets/favicon.svg" alt="@sankyu/react-circle-flags" width="120" height="120" />
|
|
4
4
|
</a>
|
|
5
5
|
</div>
|
|
6
6
|
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
|
|
37
37
|
## :world_map: 在线演示
|
|
38
38
|
|
|
39
|
-
[](https://codesandbox.io/p/sandbox/nyy6vp) [](https://stackblitz.com/
|
|
39
|
+
[](https://codesandbox.io/p/sandbox/nyy6vp) [](https://stackblitz.com/fork/github/SanKyu-Lab/circle-flags-ui/tree/main/examples/example-react?file=src%2FApp.tsx&terminal=dev)
|
|
40
40
|
|
|
41
41
|
## ✨ 核心特性
|
|
42
42
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
'use strict';const jsxRuntime=require('react/jsx-runtime');const i=({width:t=48,height:o=48,className:m,title:a="ES-VC",...r})=>jsxRuntime.jsxs("svg",{viewBox:"0 0 512 512",width:t,height:o,className:m,role:"img","aria-label":a,...r,children:[jsxRuntime.jsx("title",{children:a}),jsxRuntime.jsx("mask",{id:"a",children:jsxRuntime.jsx("circle",{cx:"256",cy:"256",r:"256",fill:"#fff"})}),jsxRuntime.jsxs("g",{mask:"url(#a)",children:[jsxRuntime.jsx("path",{fill:"#ffda44",d:"M0 0h512v512H0z"}),jsxRuntime.jsx("path",{fill:"#d80027",d:"M111 57h401v57H111zm0 114h401v57H111zm0 114h401v56H111zm0 113h401v57H111z"}),jsxRuntime.jsx("path",{fill:"#0052b4",d:"M0 0h111v512H0z"})]})]});exports.FlagEsVc=i;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import {jsxs,jsx}from'react/jsx-runtime';const i=({width:t=48,height:o=48,className:m,title:a="ES-VC",...r})=>jsxs("svg",{viewBox:"0 0 512 512",width:t,height:o,className:m,role:"img","aria-label":a,...r,children:[jsx("title",{children:a}),jsx("mask",{id:"a",children:jsx("circle",{cx:"256",cy:"256",r:"256",fill:"#fff"})}),jsxs("g",{mask:"url(#a)",children:[jsx("path",{fill:"#ffda44",d:"M0 0h512v512H0z"}),jsx("path",{fill:"#d80027",d:"M111 57h401v57H111zm0 114h401v57H111zm0 114h401v56H111zm0 113h401v57H111z"}),jsx("path",{fill:"#0052b4",d:"M0 0h111v512H0z"})]})]});export{i as FlagEsVc};
|