@postal-music/icons 0.1.19 → 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';
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ interface ReceiptIconProps extends React.SVGProps<SVGSVGElement> {
3
+ size?: number;
4
+ color?: string;
5
+ fill?: string;
6
+ strokeWidth?: number;
7
+ }
8
+ declare const ReceiptIcon: React.FC<ReceiptIconProps>;
9
+ export default ReceiptIcon;
@@ -2,4 +2,5 @@ export { default as BankNote03Icon } from './BankNote03Icon';
2
2
  export { default as CoinsStacked03Icon } from './CoinsStacked03Icon';
3
3
  export { default as CreditCardIcon } from './CreditCardIcon';
4
4
  export { default as CurrencyDollarIcon } from './CurrencyDollarIcon';
5
+ export { default as ReceiptIcon } from './ReceiptIcon';
5
6
  export { default as Wallet01Icon } from './Wallet01Icon';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@postal-music/icons",
3
- "version": "0.1.19",
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';
@@ -0,0 +1,30 @@
1
+ import React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+
4
+ interface ReceiptIconProps {
5
+ size?: number;
6
+ color?: string;
7
+ fill?: string;
8
+ strokeWidth?: number;
9
+ }
10
+
11
+ const ReceiptIcon: React.FC<ReceiptIconProps> = ({
12
+ size = 24,
13
+ color = "#000000",
14
+ fill = "none",
15
+ strokeWidth = 2,
16
+ }) => (
17
+ <Svg width={size} height={size} viewBox="0 0 24 24" fill="none">
18
+ <Path
19
+ d="M4 7.8C4 6.11984 4 5.27976 4.32698 4.63803C4.6146 4.07354 5.07354 3.6146 5.63803 3.32698C6.27976 3 7.11984 3 8.8 3H15.2C16.8802 3 17.7202 3 18.362 3.32698C18.9265 3.6146 19.3854 4.07354 19.673 4.63803C20 5.27976 20 6.11984 20 7.8V21L17.25 19L14.75 21L12 19L9.25 21L6.75 19L4 21V7.8Z"
20
+ fill={fill}
21
+ stroke={color}
22
+ strokeWidth={strokeWidth}
23
+ strokeLinecap="round"
24
+ strokeLinejoin="round"
25
+ />
26
+ </Svg>
27
+ );
28
+
29
+ export { ReceiptIcon };
30
+ export default ReceiptIcon;
@@ -0,0 +1,36 @@
1
+ import React from "react";
2
+
3
+ interface ReceiptIconProps extends React.SVGProps<SVGSVGElement> {
4
+ size?: number;
5
+ color?: string;
6
+ fill?: string;
7
+ strokeWidth?: number;
8
+ }
9
+
10
+ const ReceiptIcon: React.FC<ReceiptIconProps> = ({
11
+ size = 24,
12
+ color = "currentColor",
13
+ fill = "none",
14
+ strokeWidth = 2,
15
+ ...props
16
+ }) => (
17
+ <svg
18
+ width={size}
19
+ height={size}
20
+ viewBox="0 0 24 24"
21
+ fill="none"
22
+ xmlns="http://www.w3.org/2000/svg"
23
+ {...props}
24
+ >
25
+ <path
26
+ d="M4 7.8C4 6.11984 4 5.27976 4.32698 4.63803C4.6146 4.07354 5.07354 3.6146 5.63803 3.32698C6.27976 3 7.11984 3 8.8 3H15.2C16.8802 3 17.7202 3 18.362 3.32698C18.9265 3.6146 19.3854 4.07354 19.673 4.63803C20 5.27976 20 6.11984 20 7.8V21L17.25 19L14.75 21L12 19L9.25 21L6.75 19L4 21V7.8Z"
27
+ fill={fill}
28
+ stroke={color}
29
+ strokeWidth={strokeWidth}
30
+ strokeLinecap="round"
31
+ strokeLinejoin="round"
32
+ />
33
+ </svg>
34
+ );
35
+
36
+ export default ReceiptIcon;
@@ -2,4 +2,5 @@ export { default as BankNote03Icon } from './BankNote03Icon';
2
2
  export { default as CoinsStacked03Icon } from './CoinsStacked03Icon';
3
3
  export { default as CreditCardIcon } from './CreditCardIcon';
4
4
  export { default as CurrencyDollarIcon } from './CurrencyDollarIcon';
5
+ export { default as ReceiptIcon } from './ReceiptIcon';
5
6
  export { default as Wallet01Icon } from './Wallet01Icon';