@xipkg/icons 0.10.2 → 0.10.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/icons/MailRounded.tsx +10 -0
- package/index.ts +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Svg, IconProps } from '../Svg';
|
|
2
|
+
|
|
3
|
+
export const MailRounded = ({ ...props }: IconProps) => (
|
|
4
|
+
<Svg {...props}>
|
|
5
|
+
<path
|
|
6
|
+
d="M17 4H7C4.23858 4 2 6.23858 2 9V15C2 17.7614 4.23858 20 7 20H17C19.7614 20 22 17.7614 22 15V9C22 6.23858 19.7614 4 17 4ZM4.86519 6.89226C5.40911 6.34139 6.16469 6 7 6H17C17.8353 6 18.5909 6.34139 19.1348 6.89226L12 10.856L4.86519 6.89226ZM4.01409 8.70734C4.00477 8.80364 4 8.90126 4 9V15C4 16.6569 5.34315 18 7 18H17C18.6569 18 20 16.6569 20 15V9C20 8.90126 19.9952 8.80364 19.9859 8.70734L12.7285 12.7393C12.2754 12.9909 11.7246 12.9909 11.2715 12.7393L4.01409 8.70734Z"
|
|
7
|
+
fillRule="evenodd" clipRule="evenodd"
|
|
8
|
+
/>
|
|
9
|
+
</Svg>
|
|
10
|
+
);
|
package/index.ts
CHANGED
|
@@ -61,6 +61,7 @@ import { Link } from './icons/Link';
|
|
|
61
61
|
import { Locked } from './icons/Locked';
|
|
62
62
|
import { LongAnswer } from './icons/LongAnswer';
|
|
63
63
|
import { Mail } from './icons/Mail';
|
|
64
|
+
import { MailRounded } from './icons/MailRounded';
|
|
64
65
|
import { Maximize } from './icons/Maximize';
|
|
65
66
|
import { Microphone } from './icons/Microphone';
|
|
66
67
|
import { Minimize } from './icons/Minimize';
|
|
@@ -188,6 +189,7 @@ export {
|
|
|
188
189
|
Locked,
|
|
189
190
|
LongAnswer,
|
|
190
191
|
Mail,
|
|
192
|
+
MailRounded,
|
|
191
193
|
Maximize,
|
|
192
194
|
Microphone,
|
|
193
195
|
Moon,
|