@postal-music/icons 0.1.20 → 0.1.21
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/index.js +31 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +31 -1
- package/dist/index.mjs.map +1 -1
- package/dist/index.native.js +15 -0
- package/dist/index.native.js.map +1 -1
- package/dist/index.native.mjs +15 -1
- package/dist/index.native.mjs.map +1 -1
- package/dist/types/icons/charts/BarChart07Icon.d.ts +8 -0
- package/dist/types/icons/charts/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/icons/charts/BarChart07Icon.native.tsx +25 -0
- package/src/icons/charts/BarChart07Icon.web.tsx +36 -0
- package/src/icons/charts/index.ts +1 -0
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { default as BarChart01Icon } from './BarChart01Icon';
|
|
2
|
+
export { default as BarChart07Icon } from './BarChart07Icon';
|
|
2
3
|
export { default as BarChart10Icon } from './BarChart10Icon';
|
|
3
4
|
export { default as LineChart03UpIcon } from './LineChart03UpIcon';
|
|
4
5
|
export { default as TrendUp01Icon } from './TrendUp01Icon';
|
package/package.json
CHANGED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
type BarChart07IconProps = {
|
|
5
|
+
size?: number;
|
|
6
|
+
color?: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
const BarChart07Icon: React.FC<BarChart07IconProps> = ({
|
|
10
|
+
size = 14,
|
|
11
|
+
color = '#000000',
|
|
12
|
+
}) => (
|
|
13
|
+
<Svg width={size} height={size} viewBox="0 0 14 14" fill="none">
|
|
14
|
+
<Path
|
|
15
|
+
d="M12.25 12.25H3.61667C2.96327 12.25 2.63657 12.25 2.38701 12.1228C2.16749 12.011 1.98901 11.8325 1.87716 11.613C1.75 11.3634 1.75 11.0367 1.75 10.3833V1.75M4.08333 6.125V10.2083M6.70833 3.20833V10.2083M9.33333 6.125V10.2083M11.9583 3.20833V10.2083"
|
|
16
|
+
stroke={color}
|
|
17
|
+
strokeWidth="1.5"
|
|
18
|
+
strokeLinecap="round"
|
|
19
|
+
strokeLinejoin="round"
|
|
20
|
+
/>
|
|
21
|
+
</Svg>
|
|
22
|
+
);
|
|
23
|
+
|
|
24
|
+
export { BarChart07Icon };
|
|
25
|
+
export default BarChart07Icon;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
type IconProps = React.SVGProps<SVGSVGElement> & {
|
|
4
|
+
size?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
className?: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
const BarChart07Icon: React.FC<IconProps> = ({
|
|
10
|
+
size = 14,
|
|
11
|
+
color = "currentColor",
|
|
12
|
+
className,
|
|
13
|
+
...props
|
|
14
|
+
}) => (
|
|
15
|
+
<svg
|
|
16
|
+
width={size}
|
|
17
|
+
height={size}
|
|
18
|
+
viewBox="0 0 14 14"
|
|
19
|
+
fill="none"
|
|
20
|
+
{...props}
|
|
21
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
22
|
+
className={className}
|
|
23
|
+
role="img"
|
|
24
|
+
aria-hidden="true"
|
|
25
|
+
>
|
|
26
|
+
<path
|
|
27
|
+
d="M12.25 12.25H3.61667C2.96327 12.25 2.63657 12.25 2.38701 12.1228C2.16749 12.011 1.98901 11.8325 1.87716 11.613C1.75 11.3634 1.75 11.0367 1.75 10.3833V1.75M4.08333 6.125V10.2083M6.70833 3.20833V10.2083M9.33333 6.125V10.2083M11.9583 3.20833V10.2083"
|
|
28
|
+
stroke={color}
|
|
29
|
+
strokeWidth="1.5"
|
|
30
|
+
strokeLinecap="round"
|
|
31
|
+
strokeLinejoin="round"
|
|
32
|
+
/>
|
|
33
|
+
</svg>
|
|
34
|
+
);
|
|
35
|
+
|
|
36
|
+
export default BarChart07Icon;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { default as BarChart01Icon } from './BarChart01Icon';
|
|
2
|
+
export { default as BarChart07Icon } from './BarChart07Icon';
|
|
2
3
|
export { default as BarChart10Icon } from './BarChart10Icon';
|
|
3
4
|
export { default as LineChart03UpIcon } from './LineChart03UpIcon';
|
|
4
5
|
export { default as TrendUp01Icon } from './TrendUp01Icon';
|