@sankyu/react-circle-flags 1.5.2 → 1.5.3
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/flags/by-historical.cjs +1 -0
- package/dist/flags/by-historical.mjs +1 -0
- package/dist/index.cjs +2 -2
- package/dist/index.d.ts +4 -1
- package/dist/index.mjs +2 -2
- package/package.json +4 -4
|
@@ -0,0 +1 @@
|
|
|
1
|
+
'use strict';const jsxRuntime=require('react/jsx-runtime');const s=({width:t=48,height:o=48,className:r,title:l="BY-HISTORICAL",...i})=>jsxRuntime.jsxs("svg",{viewBox:"0 0 512 512",width:t,height:o,className:r,role:"img","aria-label":l,...i,children:[jsxRuntime.jsx("title",{children:l}),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:"#eee",d:"M512 0v170l-32 86 32 86v170H0V342l32-86-32-86V0Z"}),jsxRuntime.jsx("path",{fill:"#d80027",d:"M512 170v172H0V170Z"})]})]});exports.FlagByHistorical=s;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import {jsxs,jsx}from'react/jsx-runtime';const s=({width:t=48,height:o=48,className:r,title:l="BY-HISTORICAL",...i})=>jsxs("svg",{viewBox:"0 0 512 512",width:t,height:o,className:r,role:"img","aria-label":l,...i,children:[jsx("title",{children:l}),jsx("mask",{id:"a",children:jsx("circle",{cx:"256",cy:"256",r:"256",fill:"#fff"})}),jsxs("g",{mask:"url(#a)",children:[jsx("path",{fill:"#eee",d:"M512 0v170l-32 86 32 86v170H0V342l32-86-32-86V0Z"}),jsx("path",{fill:"#d80027",d:"M512 170v172H0V170Z"})]})]});export{s as FlagByHistorical};
|