magick-icons 0.1.35 → 0.1.37

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,30 @@
1
+ import React from 'react';
2
+
3
+ /**
4
+ * Props for the Enter icon component
5
+ * @property {number | string} [size] - Size of the icon (default: 24)
6
+ */
7
+ export interface EnterProps extends React.SVGProps<SVGSVGElement> {
8
+ size?: number | string;
9
+ }
10
+
11
+ /**
12
+ * Enter icon component
13
+ * @example
14
+ * ```tsx
15
+ * import { Enter } from 'magick-icons';
16
+ *
17
+ * <Enter size={24} className="text-blue-500" />
18
+ * ```
19
+ */
20
+ export const Enter = React.forwardRef<SVGSVGElement, EnterProps>(
21
+ ({ size, ...props }, ref) => {
22
+ return (
23
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
24
+ <path d="M19.2499 6V8C19.2499 8.86195 18.9073 9.68836 18.2978 10.2979C17.6883 10.9073 16.8619 11.25 15.9999 11.25H5.81049L9.53022 7.53027L9.58197 7.47363C9.82228 7.17905 9.80482 6.74433 9.53022 6.46973C9.25561 6.19512 8.82089 6.17766 8.52631 6.41797L8.46967 6.46973L3.46967 11.4697C3.17678 11.7626 3.17678 12.2374 3.46967 12.5303L8.46967 17.5303C8.76256 17.8232 9.23732 17.8232 9.53022 17.5303C9.82311 17.2374 9.82311 16.7626 9.53022 16.4697L5.81049 12.75H15.9999C17.2597 12.75 18.4675 12.2492 19.3583 11.3584C20.2491 10.4676 20.7499 9.25978 20.7499 8V6C20.7499 5.58579 20.4142 5.25 19.9999 5.25C19.5857 5.25 19.2499 5.58579 19.2499 6Z" fill="black"/>
25
+ </svg>
26
+ );
27
+ }
28
+ );
29
+
30
+ Enter.displayName = 'Enter';