@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.
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ type IconProps = React.SVGProps<SVGSVGElement> & {
3
+ size?: number;
4
+ color?: string;
5
+ className?: string;
6
+ };
7
+ declare const BarChart07Icon: React.FC<IconProps>;
8
+ 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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@postal-music/icons",
3
- "version": "0.1.20",
3
+ "version": "0.1.21",
4
4
  "description": "Shared design system for Postal — icons and tokens for React and React Native",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -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';