@postal-music/icons 0.1.21 → 0.1.23

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,9 @@
1
+ import React from "react";
2
+ interface IconProps extends React.SVGProps<SVGSVGElement> {
3
+ size?: number;
4
+ color?: string;
5
+ strokeWidth?: number;
6
+ filled?: boolean;
7
+ }
8
+ declare const Building02Icon: React.FC<IconProps>;
9
+ export default Building02Icon;
@@ -1,6 +1,7 @@
1
1
  export { default as ActivityIcon } from './ActivityIcon';
2
2
  export { default as BookIcon } from './BookIcon';
3
3
  export { default as Briefcase01Icon } from './Briefcase01Icon';
4
+ export { default as Building02Icon } from './Building02Icon';
4
5
  export { default as Building03Icon } from './Building03Icon';
5
6
  export { default as BookmarkIcon } from './BookmarkIcon';
6
7
  export { default as CollaborativeIcon } from './CollaborativeIcon';
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ interface IconProps extends React.SVGProps<SVGSVGElement> {
3
+ size?: number;
4
+ color?: string;
5
+ }
6
+ declare const BackwardIcon: React.FC<IconProps>;
7
+ export default BackwardIcon;
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ interface IconProps extends React.SVGProps<SVGSVGElement> {
3
+ size?: number;
4
+ color?: string;
5
+ }
6
+ declare const ForwardIcon: React.FC<IconProps>;
7
+ export default ForwardIcon;
@@ -1,5 +1,7 @@
1
1
  export { default as TenSecondsBackIcon } from './10SecondsBackIcon';
2
+ export { default as BackwardIcon } from './BackwardIcon';
2
3
  export { default as EqualizerIcon } from './EqualizerIcon';
4
+ export { default as ForwardIcon } from './ForwardIcon';
3
5
  export { default as Film01Icon } from './Film01Icon';
4
6
  export { default as Film03Icon } from './Film03Icon';
5
7
  export { default as Microphone01Icon } from './Microphone01Icon';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@postal-music/icons",
3
- "version": "0.1.21",
3
+ "version": "0.1.23",
4
4
  "description": "Shared design system for Postal — icons and tokens for React and React Native",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -13,7 +13,6 @@ const TrashIcon: React.FC<IconProps> = ({ size = 20, color = "currentColor", ...
13
13
  strokeWidth="1.5"
14
14
  strokeLinecap="round"
15
15
  strokeLinejoin="round"
16
- vectorEffect="non-scaling-stroke"
17
16
 
18
17
  />
19
18
  </svg>
@@ -23,7 +23,6 @@ const DownloadIcon: React.FC<IconProps> = ({ size = 18, color = "currentColor",
23
23
  strokeWidth={strokeWidth}
24
24
  strokeLinecap="round"
25
25
  strokeLinejoin="round"
26
- vectorEffect="non-scaling-stroke"
27
26
  />
28
27
  </svg>
29
28
  );
@@ -0,0 +1,48 @@
1
+ import React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+
4
+ interface IconProps {
5
+ size?: number;
6
+ color?: string;
7
+ strokeWidth?: number;
8
+ filled?: boolean;
9
+ }
10
+
11
+ const Building02Icon: React.FC<IconProps> = ({
12
+ size = 18,
13
+ color = '#000000',
14
+ strokeWidth = 1.67,
15
+ filled = false,
16
+ }) => (
17
+ <Svg
18
+ width={size}
19
+ height={size}
20
+ viewBox="0 0 18 18"
21
+ fill="none"
22
+ >
23
+ {filled ? (
24
+ <>
25
+ <Path
26
+ d="M2.25 5.25V4.65C2.25 3.80992 2.25 3.38988 2.41349 3.06901C2.5573 2.78677 2.78677 2.5573 3.06901 2.41349C3.38988 2.25 3.80992 2.25 4.65 2.25H13.35C14.1901 2.25 14.6101 2.25 14.931 2.41349C15.2132 2.5573 15.4427 2.78677 15.5865 3.06901C15.75 3.38988 15.75 3.80992 15.75 4.65V5.25C15.75 6.49264 14.7426 7.5 13.5 7.5C12.2574 7.5 11.25 6.49264 11.25 5.25C11.25 6.49264 10.2426 7.5 9 7.5C7.75736 7.5 6.75 6.49264 6.75 5.25C6.75 6.49264 5.74264 7.5 4.5 7.5C3.25736 7.5 2.25 6.49264 2.25 5.25Z"
27
+ fill={color}
28
+ />
29
+ <Path
30
+ d="M2.25 8.75H15.75V13.35C15.75 14.1901 15.75 14.6101 15.5865 14.931C15.4427 15.2132 15.2132 15.4427 14.931 15.5865C14.6101 15.75 14.1901 15.75 13.35 15.75H4.65C3.80992 15.75 3.38988 15.75 3.06901 15.5865C2.78677 15.4427 2.5573 15.2132 2.41349 14.931C2.25 14.6101 2.25 14.1901 2.25 13.35V8.75ZM6.75 15.75V11.7C6.75 11.28 6.75 11.0699 6.83175 10.9095C6.90365 10.7684 7.01839 10.6537 7.15951 10.5817C7.31994 10.5 7.52996 10.5 7.95 10.5H10.05C10.47 10.5 10.6801 10.5 10.8405 10.5817C10.9816 10.6537 11.0963 10.7684 11.1683 10.9095C11.25 11.0699 11.25 11.28 11.25 11.7V15.75H6.75Z"
31
+ fill={color}
32
+ fillRule="evenodd"
33
+ />
34
+ </>
35
+ ) : (
36
+ <Path
37
+ d="M11.25 15.75V11.7C11.25 11.28 11.25 11.0699 11.1683 10.9095C11.0963 10.7684 10.9816 10.6537 10.8405 10.5817C10.6801 10.5 10.47 10.5 10.05 10.5H7.95C7.52996 10.5 7.31994 10.5 7.15951 10.5817C7.01839 10.6537 6.90365 10.7684 6.83175 10.9095C6.75 11.0699 6.75 11.28 6.75 11.7V15.75M2.25 5.25C2.25 6.49264 3.25736 7.5 4.5 7.5C5.74264 7.5 6.75 6.49264 6.75 5.25C6.75 6.49264 7.75736 7.5 9 7.5C10.2426 7.5 11.25 6.49264 11.25 5.25C11.25 6.49264 12.2574 7.5 13.5 7.5C14.7426 7.5 15.75 6.49264 15.75 5.25M4.65 15.75H13.35C14.1901 15.75 14.6101 15.75 14.931 15.5865C15.2132 15.4427 15.4427 15.2132 15.5865 14.931C15.75 14.6101 15.75 14.1901 15.75 13.35V4.65C15.75 3.80992 15.75 3.38988 15.5865 3.06901C15.4427 2.78677 15.2132 2.5573 14.931 2.41349C14.6101 2.25 14.1901 2.25 13.35 2.25H4.65C3.80992 2.25 3.38988 2.25 3.06901 2.41349C2.78677 2.5573 2.5573 2.78677 2.41349 3.06901C2.25 3.38988 2.25 3.80992 2.25 4.65V13.35C2.25 14.1901 2.25 14.6101 2.41349 14.931C2.5573 15.2132 2.78677 15.4427 3.06901 15.5865C3.38988 15.75 3.80992 15.75 4.65 15.75Z"
38
+ stroke={color}
39
+ strokeWidth={strokeWidth}
40
+ strokeLinecap="round"
41
+ strokeLinejoin="round"
42
+ />
43
+ )}
44
+ </Svg>
45
+ );
46
+
47
+ export { Building02Icon };
48
+ export default Building02Icon;
@@ -0,0 +1,49 @@
1
+ import React from "react";
2
+
3
+ interface IconProps extends React.SVGProps<SVGSVGElement> {
4
+ size?: number;
5
+ color?: string;
6
+ strokeWidth?: number;
7
+ filled?: boolean;
8
+ }
9
+
10
+ const Building02Icon: React.FC<IconProps> = ({
11
+ size = 18,
12
+ color = "currentColor",
13
+ strokeWidth = 1.67,
14
+ filled = false,
15
+ ...props
16
+ }) => (
17
+ <svg
18
+ width={size}
19
+ height={size}
20
+ viewBox="0 0 18 18"
21
+ fill="none"
22
+ xmlns="http://www.w3.org/2000/svg"
23
+ {...props}
24
+ >
25
+ {filled ? (
26
+ <>
27
+ <path
28
+ d="M2.25 5.25V4.65C2.25 3.80992 2.25 3.38988 2.41349 3.06901C2.5573 2.78677 2.78677 2.5573 3.06901 2.41349C3.38988 2.25 3.80992 2.25 4.65 2.25H13.35C14.1901 2.25 14.6101 2.25 14.931 2.41349C15.2132 2.5573 15.4427 2.78677 15.5865 3.06901C15.75 3.38988 15.75 3.80992 15.75 4.65V5.25C15.75 6.49264 14.7426 7.5 13.5 7.5C12.2574 7.5 11.25 6.49264 11.25 5.25C11.25 6.49264 10.2426 7.5 9 7.5C7.75736 7.5 6.75 6.49264 6.75 5.25C6.75 6.49264 5.74264 7.5 4.5 7.5C3.25736 7.5 2.25 6.49264 2.25 5.25Z"
29
+ fill={color}
30
+ />
31
+ <path
32
+ d="M2.25 8.75H15.75V13.35C15.75 14.1901 15.75 14.6101 15.5865 14.931C15.4427 15.2132 15.2132 15.4427 14.931 15.5865C14.6101 15.75 14.1901 15.75 13.35 15.75H4.65C3.80992 15.75 3.38988 15.75 3.06901 15.5865C2.78677 15.4427 2.5573 15.2132 2.41349 14.931C2.25 14.6101 2.25 14.1901 2.25 13.35V8.75ZM6.75 15.75V11.7C6.75 11.28 6.75 11.0699 6.83175 10.9095C6.90365 10.7684 7.01839 10.6537 7.15951 10.5817C7.31994 10.5 7.52996 10.5 7.95 10.5H10.05C10.47 10.5 10.6801 10.5 10.8405 10.5817C10.9816 10.6537 11.0963 10.7684 11.1683 10.9095C11.25 11.0699 11.25 11.28 11.25 11.7V15.75H6.75Z"
33
+ fill={color}
34
+ fillRule="evenodd"
35
+ />
36
+ </>
37
+ ) : (
38
+ <path
39
+ d="M11.25 15.75V11.7C11.25 11.28 11.25 11.0699 11.1683 10.9095C11.0963 10.7684 10.9816 10.6537 10.8405 10.5817C10.6801 10.5 10.47 10.5 10.05 10.5H7.95C7.52996 10.5 7.31994 10.5 7.15951 10.5817C7.01839 10.6537 6.90365 10.7684 6.83175 10.9095C6.75 11.0699 6.75 11.28 6.75 11.7V15.75M2.25 5.25C2.25 6.49264 3.25736 7.5 4.5 7.5C5.74264 7.5 6.75 6.49264 6.75 5.25C6.75 6.49264 7.75736 7.5 9 7.5C10.2426 7.5 11.25 6.49264 11.25 5.25C11.25 6.49264 12.2574 7.5 13.5 7.5C14.7426 7.5 15.75 6.49264 15.75 5.25M4.65 15.75H13.35C14.1901 15.75 14.6101 15.75 14.931 15.5865C15.2132 15.4427 15.4427 15.2132 15.5865 14.931C15.75 14.6101 15.75 14.1901 15.75 13.35V4.65C15.75 3.80992 15.75 3.38988 15.5865 3.06901C15.4427 2.78677 15.2132 2.5573 14.931 2.41349C14.6101 2.25 14.1901 2.25 13.35 2.25H4.65C3.80992 2.25 3.38988 2.25 3.06901 2.41349C2.78677 2.5573 2.5573 2.78677 2.41349 3.06901C2.25 3.38988 2.25 3.80992 2.25 4.65V13.35C2.25 14.1901 2.25 14.6101 2.41349 14.931C2.5573 15.2132 2.78677 15.4427 3.06901 15.5865C3.38988 15.75 3.80992 15.75 4.65 15.75Z"
40
+ stroke={color}
41
+ strokeWidth={strokeWidth}
42
+ strokeLinecap="round"
43
+ strokeLinejoin="round"
44
+ />
45
+ )}
46
+ </svg>
47
+ );
48
+
49
+ export default Building02Icon;
@@ -23,7 +23,6 @@ export default function StarIcon({
23
23
  strokeLinecap="round"
24
24
  strokeLinejoin="round"
25
25
  fill={filled ? "currentColor" : "none"}
26
- vectorEffect="non-scaling-stroke"
27
26
  />
28
27
  </svg>
29
28
  );
@@ -1,6 +1,7 @@
1
1
  export { default as ActivityIcon } from './ActivityIcon';
2
2
  export { default as BookIcon } from './BookIcon';
3
3
  export { default as Briefcase01Icon } from './Briefcase01Icon';
4
+ export { default as Building02Icon } from './Building02Icon';
4
5
  export { default as Building03Icon } from './Building03Icon';
5
6
  export { default as BookmarkIcon } from './BookmarkIcon';
6
7
  export { default as CollaborativeIcon } from './CollaborativeIcon';
@@ -0,0 +1,28 @@
1
+ import React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+
4
+ interface IconProps {
5
+ size?: number;
6
+ color?: string;
7
+ }
8
+
9
+ const BackwardIcon: React.FC<IconProps> = ({ size = 20, color = '#000000' }) => (
10
+ <Svg
11
+ width={size}
12
+ height={size}
13
+ viewBox="0 0 28 16"
14
+ fill="none"
15
+ >
16
+ <Path
17
+ d="M14.25 12.6738C14.25 13.3213 14.25 13.645 14.0981 13.8234C13.9658 13.9789 13.7636 14.0751 13.5447 14.0867C13.2934 14.1 12.9904 13.9205 12.3844 13.5613L4.49769 8.88776C3.99693 8.59101 3.74654 8.44264 3.65929 8.25562C3.58301 8.09212 3.58301 7.90836 3.65929 7.74486C3.74654 7.55784 3.99693 7.40947 4.49769 7.11272L12.3844 2.43914C12.9904 2.08 13.2934 1.90043 13.5447 1.91377C13.7636 1.92539 13.9658 2.02159 14.0981 2.17705C14.25 2.35549 14.25 2.67921 14.25 3.32666L14.25 12.6738Z"
18
+ fill={color}
19
+ />
20
+ <Path
21
+ d="M24.25 12.6738C24.25 13.3213 24.25 13.645 24.0981 13.8234C23.9658 13.9789 23.7636 14.0751 23.5447 14.0867C23.2934 14.1 22.9904 13.9205 22.3844 13.5613L14.4977 8.88776C13.9969 8.59101 13.7465 8.44264 13.6593 8.25562C13.583 8.09212 13.583 7.90836 13.6593 7.74486C13.7465 7.55784 13.9969 7.40947 14.4977 7.11272L22.3844 2.43914C22.9904 2.08 23.2934 1.90043 23.5447 1.91377C23.7636 1.92539 23.9658 2.02159 24.0981 2.17705C24.25 2.35549 24.25 2.67921 24.25 3.32666L24.25 12.6738Z"
22
+ fill={color}
23
+ />
24
+ </Svg>
25
+ );
26
+
27
+ export { BackwardIcon };
28
+ export default BackwardIcon;
@@ -0,0 +1,28 @@
1
+ import React from "react";
2
+
3
+ interface IconProps extends React.SVGProps<SVGSVGElement> {
4
+ size?: number;
5
+ color?: string;
6
+ }
7
+
8
+ const BackwardIcon: React.FC<IconProps> = ({ size = 20, color = "currentColor", ...props }) => (
9
+ <svg
10
+ width={size}
11
+ height={size}
12
+ viewBox="0 0 28 16"
13
+ fill="none"
14
+ {...props}
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ >
17
+ <path
18
+ d="M14.25 12.6738C14.25 13.3213 14.25 13.645 14.0981 13.8234C13.9658 13.9789 13.7636 14.0751 13.5447 14.0867C13.2934 14.1 12.9904 13.9205 12.3844 13.5613L4.49769 8.88776C3.99693 8.59101 3.74654 8.44264 3.65929 8.25562C3.58301 8.09212 3.58301 7.90836 3.65929 7.74486C3.74654 7.55784 3.99693 7.40947 4.49769 7.11272L12.3844 2.43914C12.9904 2.08 13.2934 1.90043 13.5447 1.91377C13.7636 1.92539 13.9658 2.02159 14.0981 2.17705C14.25 2.35549 14.25 2.67921 14.25 3.32666L14.25 12.6738Z"
19
+ fill={color}
20
+ />
21
+ <path
22
+ d="M24.25 12.6738C24.25 13.3213 24.25 13.645 24.0981 13.8234C23.9658 13.9789 23.7636 14.0751 23.5447 14.0867C23.2934 14.1 22.9904 13.9205 22.3844 13.5613L14.4977 8.88776C13.9969 8.59101 13.7465 8.44264 13.6593 8.25562C13.583 8.09212 13.583 7.90836 13.6593 7.74486C13.7465 7.55784 13.9969 7.40947 14.4977 7.11272L22.3844 2.43914C22.9904 2.08 23.2934 1.90043 23.5447 1.91377C23.7636 1.92539 23.9658 2.02159 24.0981 2.17705C24.25 2.35549 24.25 2.67921 24.25 3.32666L24.25 12.6738Z"
23
+ fill={color}
24
+ />
25
+ </svg>
26
+ );
27
+
28
+ export default BackwardIcon;
@@ -0,0 +1,28 @@
1
+ import React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+
4
+ interface IconProps {
5
+ size?: number;
6
+ color?: string;
7
+ }
8
+
9
+ const ForwardIcon: React.FC<IconProps> = ({ size = 20, color = '#000000' }) => (
10
+ <Svg
11
+ width={size}
12
+ height={size}
13
+ viewBox="0 0 28 16"
14
+ fill="none"
15
+ >
16
+ <Path
17
+ d="M3.75 3.32618C3.75 2.67874 3.75 2.35502 3.90187 2.17657C4.03417 2.02111 4.23639 1.92491 4.4553 1.91329C4.70658 1.89996 5.0096 2.07953 5.61564 2.43866L13.5023 7.11224C14.0031 7.40899 14.2535 7.55737 14.3407 7.74438C14.417 7.90789 14.417 8.09164 14.3407 8.25514C14.2535 8.44216 14.0031 8.59053 13.5023 8.88728L5.61564 13.5609C5.0096 13.92 4.70658 14.0996 4.4553 14.0862C4.23639 14.0746 4.03417 13.9784 3.90187 13.823C3.75 13.6445 3.75 13.3208 3.75 12.6733L3.75 3.32618Z"
18
+ fill={color}
19
+ />
20
+ <Path
21
+ d="M13.75 3.32618C13.75 2.67874 13.75 2.35502 13.9019 2.17657C14.0342 2.02111 14.2364 1.92491 14.4553 1.91329C14.7066 1.89996 15.0096 2.07953 15.6156 2.43866L23.5023 7.11224C24.0031 7.40899 24.2535 7.55737 24.3407 7.74438C24.417 7.90789 24.417 8.09164 24.3407 8.25514C24.2535 8.44216 24.0031 8.59053 23.5023 8.88728L15.6156 13.5609C15.0096 13.92 14.7066 14.0996 14.4553 14.0862C14.2364 14.0746 14.0342 13.9784 13.9019 13.823C13.75 13.6445 13.75 13.3208 13.75 12.6733L13.75 3.32618Z"
22
+ fill={color}
23
+ />
24
+ </Svg>
25
+ );
26
+
27
+ export { ForwardIcon };
28
+ export default ForwardIcon;
@@ -0,0 +1,28 @@
1
+ import React from "react";
2
+
3
+ interface IconProps extends React.SVGProps<SVGSVGElement> {
4
+ size?: number;
5
+ color?: string;
6
+ }
7
+
8
+ const ForwardIcon: React.FC<IconProps> = ({ size = 20, color = "currentColor", ...props }) => (
9
+ <svg
10
+ width={size}
11
+ height={size}
12
+ viewBox="0 0 28 16"
13
+ fill="none"
14
+ {...props}
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ >
17
+ <path
18
+ d="M3.75 3.32618C3.75 2.67874 3.75 2.35502 3.90187 2.17657C4.03417 2.02111 4.23639 1.92491 4.4553 1.91329C4.70658 1.89996 5.0096 2.07953 5.61564 2.43866L13.5023 7.11224C14.0031 7.40899 14.2535 7.55737 14.3407 7.74438C14.417 7.90789 14.417 8.09164 14.3407 8.25514C14.2535 8.44216 14.0031 8.59053 13.5023 8.88728L5.61564 13.5609C5.0096 13.92 4.70658 14.0996 4.4553 14.0862C4.23639 14.0746 4.03417 13.9784 3.90187 13.823C3.75 13.6445 3.75 13.3208 3.75 12.6733L3.75 3.32618Z"
19
+ fill={color}
20
+ />
21
+ <path
22
+ d="M13.75 3.32618C13.75 2.67874 13.75 2.35502 13.9019 2.17657C14.0342 2.02111 14.2364 1.92491 14.4553 1.91329C14.7066 1.89996 15.0096 2.07953 15.6156 2.43866L23.5023 7.11224C24.0031 7.40899 24.2535 7.55737 24.3407 7.74438C24.417 7.90789 24.417 8.09164 24.3407 8.25514C24.2535 8.44216 24.0031 8.59053 23.5023 8.88728L15.6156 13.5609C15.0096 13.92 14.7066 14.0996 14.4553 14.0862C14.2364 14.0746 14.0342 13.9784 13.9019 13.823C13.75 13.6445 13.75 13.3208 13.75 12.6733L13.75 3.32618Z"
23
+ fill={color}
24
+ />
25
+ </svg>
26
+ );
27
+
28
+ export default ForwardIcon;
@@ -1,5 +1,7 @@
1
1
  export { default as TenSecondsBackIcon } from './10SecondsBackIcon';
2
+ export { default as BackwardIcon } from './BackwardIcon';
2
3
  export { default as EqualizerIcon } from './EqualizerIcon';
4
+ export { default as ForwardIcon } from './ForwardIcon';
3
5
  export { default as Film01Icon } from './Film01Icon';
4
6
  export { default as Film03Icon } from './Film03Icon';
5
7
  export { default as Microphone01Icon } from './Microphone01Icon';