magick-icons 0.1.215 → 0.1.216

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/index.d.mts CHANGED
@@ -1692,6 +1692,132 @@ interface FileProps extends React.SVGProps<SVGSVGElement> {
1692
1692
  */
1693
1693
  declare const File: React.ForwardRefExoticComponent<Omit<FileProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1694
1694
 
1695
+ /**
1696
+ * Props for the Filter1 icon component
1697
+ * @property {number | string} [size] - Size of the icon (default: 24)
1698
+ */
1699
+ interface Filter1Props extends React.SVGProps<SVGSVGElement> {
1700
+ size?: number | string;
1701
+ }
1702
+ /**
1703
+ * Filter1 icon component
1704
+ * @example
1705
+ * ```tsx
1706
+ * import { Filter1 } from 'magick-icons';
1707
+ *
1708
+ * <Filter1 size={24} className="text-blue-500" strokeWidth={2} />
1709
+ * ```
1710
+ */
1711
+ declare const Filter1: React.ForwardRefExoticComponent<Omit<Filter1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1712
+
1713
+ /**
1714
+ * Props for the FilterAdd1 icon component
1715
+ * @property {number | string} [size] - Size of the icon (default: 24)
1716
+ */
1717
+ interface FilterAdd1Props extends React.SVGProps<SVGSVGElement> {
1718
+ size?: number | string;
1719
+ }
1720
+ /**
1721
+ * FilterAdd1 icon component
1722
+ * @example
1723
+ * ```tsx
1724
+ * import { FilterAdd1 } from 'magick-icons';
1725
+ *
1726
+ * <FilterAdd1 size={24} className="text-blue-500" strokeWidth={2} />
1727
+ * ```
1728
+ */
1729
+ declare const FilterAdd1: React.ForwardRefExoticComponent<Omit<FilterAdd1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1730
+
1731
+ /**
1732
+ * Props for the FilterEdit1 icon component
1733
+ * @property {number | string} [size] - Size of the icon (default: 24)
1734
+ */
1735
+ interface FilterEdit1Props extends React.SVGProps<SVGSVGElement> {
1736
+ size?: number | string;
1737
+ }
1738
+ /**
1739
+ * FilterEdit1 icon component
1740
+ * @example
1741
+ * ```tsx
1742
+ * import { FilterEdit1 } from 'magick-icons';
1743
+ *
1744
+ * <FilterEdit1 size={24} className="text-blue-500" strokeWidth={2} />
1745
+ * ```
1746
+ */
1747
+ declare const FilterEdit1: React.ForwardRefExoticComponent<Omit<FilterEdit1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1748
+
1749
+ /**
1750
+ * Props for the FilterRemove1 icon component
1751
+ * @property {number | string} [size] - Size of the icon (default: 24)
1752
+ */
1753
+ interface FilterRemove1Props extends React.SVGProps<SVGSVGElement> {
1754
+ size?: number | string;
1755
+ }
1756
+ /**
1757
+ * FilterRemove1 icon component
1758
+ * @example
1759
+ * ```tsx
1760
+ * import { FilterRemove1 } from 'magick-icons';
1761
+ *
1762
+ * <FilterRemove1 size={24} className="text-blue-500" strokeWidth={2} />
1763
+ * ```
1764
+ */
1765
+ declare const FilterRemove1: React.ForwardRefExoticComponent<Omit<FilterRemove1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1766
+
1767
+ /**
1768
+ * Props for the FilterSearch1 icon component
1769
+ * @property {number | string} [size] - Size of the icon (default: 24)
1770
+ */
1771
+ interface FilterSearch1Props extends React.SVGProps<SVGSVGElement> {
1772
+ size?: number | string;
1773
+ }
1774
+ /**
1775
+ * FilterSearch1 icon component
1776
+ * @example
1777
+ * ```tsx
1778
+ * import { FilterSearch1 } from 'magick-icons';
1779
+ *
1780
+ * <FilterSearch1 size={24} className="text-blue-500" strokeWidth={2} />
1781
+ * ```
1782
+ */
1783
+ declare const FilterSearch1: React.ForwardRefExoticComponent<Omit<FilterSearch1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1784
+
1785
+ /**
1786
+ * Props for the FilterSquare1 icon component
1787
+ * @property {number | string} [size] - Size of the icon (default: 24)
1788
+ */
1789
+ interface FilterSquare1Props extends React.SVGProps<SVGSVGElement> {
1790
+ size?: number | string;
1791
+ }
1792
+ /**
1793
+ * FilterSquare1 icon component
1794
+ * @example
1795
+ * ```tsx
1796
+ * import { FilterSquare1 } from 'magick-icons';
1797
+ *
1798
+ * <FilterSquare1 size={24} className="text-blue-500" strokeWidth={2} />
1799
+ * ```
1800
+ */
1801
+ declare const FilterSquare1: React.ForwardRefExoticComponent<Omit<FilterSquare1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1802
+
1803
+ /**
1804
+ * Props for the FilterTick1 icon component
1805
+ * @property {number | string} [size] - Size of the icon (default: 24)
1806
+ */
1807
+ interface FilterTick1Props extends React.SVGProps<SVGSVGElement> {
1808
+ size?: number | string;
1809
+ }
1810
+ /**
1811
+ * FilterTick1 icon component
1812
+ * @example
1813
+ * ```tsx
1814
+ * import { FilterTick1 } from 'magick-icons';
1815
+ *
1816
+ * <FilterTick1 size={24} className="text-blue-500" strokeWidth={2} />
1817
+ * ```
1818
+ */
1819
+ declare const FilterTick1: React.ForwardRefExoticComponent<Omit<FilterTick1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1820
+
1695
1821
  /**
1696
1822
  * Props for the Finance icon component
1697
1823
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -1728,6 +1854,96 @@ interface FlagProps extends React.SVGProps<SVGSVGElement> {
1728
1854
  */
1729
1855
  declare const Flag: React.ForwardRefExoticComponent<Omit<FlagProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1730
1856
 
1857
+ /**
1858
+ * Props for the Flag1 icon component
1859
+ * @property {number | string} [size] - Size of the icon (default: 24)
1860
+ */
1861
+ interface Flag1Props extends React.SVGProps<SVGSVGElement> {
1862
+ size?: number | string;
1863
+ }
1864
+ /**
1865
+ * Flag1 icon component
1866
+ * @example
1867
+ * ```tsx
1868
+ * import { Flag1 } from 'magick-icons';
1869
+ *
1870
+ * <Flag1 size={24} className="text-blue-500" strokeWidth={2} />
1871
+ * ```
1872
+ */
1873
+ declare const Flag1: React.ForwardRefExoticComponent<Omit<Flag1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1874
+
1875
+ /**
1876
+ * Props for the Flag21 icon component
1877
+ * @property {number | string} [size] - Size of the icon (default: 24)
1878
+ */
1879
+ interface Flag21Props extends React.SVGProps<SVGSVGElement> {
1880
+ size?: number | string;
1881
+ }
1882
+ /**
1883
+ * Flag21 icon component
1884
+ * @example
1885
+ * ```tsx
1886
+ * import { Flag21 } from 'magick-icons';
1887
+ *
1888
+ * <Flag21 size={24} className="text-blue-500" strokeWidth={2} />
1889
+ * ```
1890
+ */
1891
+ declare const Flag21: React.ForwardRefExoticComponent<Omit<Flag21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1892
+
1893
+ /**
1894
+ * Props for the Flash1 icon component
1895
+ * @property {number | string} [size] - Size of the icon (default: 24)
1896
+ */
1897
+ interface Flash1Props extends React.SVGProps<SVGSVGElement> {
1898
+ size?: number | string;
1899
+ }
1900
+ /**
1901
+ * Flash1 icon component
1902
+ * @example
1903
+ * ```tsx
1904
+ * import { Flash1 } from 'magick-icons';
1905
+ *
1906
+ * <Flash1 size={24} className="text-blue-500" strokeWidth={2} />
1907
+ * ```
1908
+ */
1909
+ declare const Flash1: React.ForwardRefExoticComponent<Omit<Flash1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1910
+
1911
+ /**
1912
+ * Props for the FlashCircle1 icon component
1913
+ * @property {number | string} [size] - Size of the icon (default: 24)
1914
+ */
1915
+ interface FlashCircle1Props extends React.SVGProps<SVGSVGElement> {
1916
+ size?: number | string;
1917
+ }
1918
+ /**
1919
+ * FlashCircle1 icon component
1920
+ * @example
1921
+ * ```tsx
1922
+ * import { FlashCircle1 } from 'magick-icons';
1923
+ *
1924
+ * <FlashCircle1 size={24} className="text-blue-500" strokeWidth={2} />
1925
+ * ```
1926
+ */
1927
+ declare const FlashCircle1: React.ForwardRefExoticComponent<Omit<FlashCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1928
+
1929
+ /**
1930
+ * Props for the FlashCircle11 icon component
1931
+ * @property {number | string} [size] - Size of the icon (default: 24)
1932
+ */
1933
+ interface FlashCircle11Props extends React.SVGProps<SVGSVGElement> {
1934
+ size?: number | string;
1935
+ }
1936
+ /**
1937
+ * FlashCircle11 icon component
1938
+ * @example
1939
+ * ```tsx
1940
+ * import { FlashCircle11 } from 'magick-icons';
1941
+ *
1942
+ * <FlashCircle11 size={24} className="text-blue-500" strokeWidth={2} />
1943
+ * ```
1944
+ */
1945
+ declare const FlashCircle11: React.ForwardRefExoticComponent<Omit<FlashCircle11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1946
+
1731
1947
  /**
1732
1948
  * Props for the Folder2 icon component
1733
1949
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -2592,4 +2808,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
2592
2808
  */
2593
2809
  declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2594
2810
 
2595
- export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, BookmarkFilled, type BookmarkFilledProps, Box21, type Box21Props, BoxAdd1, type BoxAdd1Props, BoxRemove1, type BoxRemove1Props, BoxSearch1, type BoxSearch1Props, BoxTick1, type BoxTick1Props, BoxTime1, type BoxTime1Props, Brush1, Brush11, type Brush11Props, type Brush1Props, Brush21, type Brush21Props, Brush31, type Brush31Props, Brush41, type Brush41Props, BrushSquare1, type BrushSquare1Props, Bubble1, type Bubble1Props, Bucket1, type Bucket1Props, BucketCircle1, type BucketCircle1Props, BucketSquare1, type BucketSquare1Props, Cake1, type Cake1Props, Calendar, type CalendarProps, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, CardanoAda, type CardanoAdaProps, Cards1, Cards11, type Cards11Props, type Cards1Props, Cd1, type Cd1Props, Centralized1, type Centralized1Props, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Coin1, type Coin1Props, Coins1, type Coins1Props, ColorSwatch1, type ColorSwatch1Props, Colorfilter1, type Colorfilter1Props, ColorsSquare1, type ColorsSquare1Props, Component1, type Component1Props, Computing1, type Computing1Props, Convert3dCube1, type Convert3dCube1Props, ConvertCard1, type ConvertCard1Props, Convertshape1, type Convertshape1Props, Convertshape21, type Convertshape21Props, Crop1, Crop11, type Crop11Props, type Crop1Props, Crown1, Crown11, type Crown11Props, type Crown1Props, Cup1, Cup11, type Cup11Props, type Cup1Props, Danger1, type Danger1Props, Designtools1, type Designtools1Props, DeviceMessage1, type DeviceMessage1Props, Diamonds1, Diamonds11, type Diamonds11Props, type Diamonds1Props, DiscountShape1, type DiscountShape1Props, Discover1, Discover11, type Discover11Props, type Discover1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, EmptyWalletAdd1, type EmptyWalletAdd1Props, EmptyWalletChange1, type EmptyWalletChange1Props, EmptyWalletRemove1, type EmptyWalletRemove1Props, EmptyWalletTick1, type EmptyWalletTick1Props, EmptyWalletTime1, type EmptyWalletTime1Props, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
2811
+ export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, BookmarkFilled, type BookmarkFilledProps, Box21, type Box21Props, BoxAdd1, type BoxAdd1Props, BoxRemove1, type BoxRemove1Props, BoxSearch1, type BoxSearch1Props, BoxTick1, type BoxTick1Props, BoxTime1, type BoxTime1Props, Brush1, Brush11, type Brush11Props, type Brush1Props, Brush21, type Brush21Props, Brush31, type Brush31Props, Brush41, type Brush41Props, BrushSquare1, type BrushSquare1Props, Bubble1, type Bubble1Props, Bucket1, type Bucket1Props, BucketCircle1, type BucketCircle1Props, BucketSquare1, type BucketSquare1Props, Cake1, type Cake1Props, Calendar, type CalendarProps, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, CardanoAda, type CardanoAdaProps, Cards1, Cards11, type Cards11Props, type Cards1Props, Cd1, type Cd1Props, Centralized1, type Centralized1Props, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Coin1, type Coin1Props, Coins1, type Coins1Props, ColorSwatch1, type ColorSwatch1Props, Colorfilter1, type Colorfilter1Props, ColorsSquare1, type ColorsSquare1Props, Component1, type Component1Props, Computing1, type Computing1Props, Convert3dCube1, type Convert3dCube1Props, ConvertCard1, type ConvertCard1Props, Convertshape1, type Convertshape1Props, Convertshape21, type Convertshape21Props, Crop1, Crop11, type Crop11Props, type Crop1Props, Crown1, Crown11, type Crown11Props, type Crown1Props, Cup1, Cup11, type Cup11Props, type Cup1Props, Danger1, type Danger1Props, Designtools1, type Designtools1Props, DeviceMessage1, type DeviceMessage1Props, Diamonds1, Diamonds11, type Diamonds11Props, type Diamonds1Props, DiscountShape1, type DiscountShape1Props, Discover1, Discover11, type Discover11Props, type Discover1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, EmptyWalletAdd1, type EmptyWalletAdd1Props, EmptyWalletChange1, type EmptyWalletChange1Props, EmptyWalletRemove1, type EmptyWalletRemove1Props, EmptyWalletTick1, type EmptyWalletTick1Props, EmptyWalletTime1, type EmptyWalletTime1Props, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Filter1, type Filter1Props, FilterAdd1, type FilterAdd1Props, FilterEdit1, type FilterEdit1Props, FilterRemove1, type FilterRemove1Props, FilterSearch1, type FilterSearch1Props, FilterSquare1, type FilterSquare1Props, FilterTick1, type FilterTick1Props, Finance, type FinanceProps, Flag, Flag1, type Flag1Props, Flag21, type Flag21Props, type FlagProps, Flash1, type Flash1Props, FlashCircle1, FlashCircle11, type FlashCircle11Props, type FlashCircle1Props, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
package/index.d.ts CHANGED
@@ -1692,6 +1692,132 @@ interface FileProps extends React.SVGProps<SVGSVGElement> {
1692
1692
  */
1693
1693
  declare const File: React.ForwardRefExoticComponent<Omit<FileProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1694
1694
 
1695
+ /**
1696
+ * Props for the Filter1 icon component
1697
+ * @property {number | string} [size] - Size of the icon (default: 24)
1698
+ */
1699
+ interface Filter1Props extends React.SVGProps<SVGSVGElement> {
1700
+ size?: number | string;
1701
+ }
1702
+ /**
1703
+ * Filter1 icon component
1704
+ * @example
1705
+ * ```tsx
1706
+ * import { Filter1 } from 'magick-icons';
1707
+ *
1708
+ * <Filter1 size={24} className="text-blue-500" strokeWidth={2} />
1709
+ * ```
1710
+ */
1711
+ declare const Filter1: React.ForwardRefExoticComponent<Omit<Filter1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1712
+
1713
+ /**
1714
+ * Props for the FilterAdd1 icon component
1715
+ * @property {number | string} [size] - Size of the icon (default: 24)
1716
+ */
1717
+ interface FilterAdd1Props extends React.SVGProps<SVGSVGElement> {
1718
+ size?: number | string;
1719
+ }
1720
+ /**
1721
+ * FilterAdd1 icon component
1722
+ * @example
1723
+ * ```tsx
1724
+ * import { FilterAdd1 } from 'magick-icons';
1725
+ *
1726
+ * <FilterAdd1 size={24} className="text-blue-500" strokeWidth={2} />
1727
+ * ```
1728
+ */
1729
+ declare const FilterAdd1: React.ForwardRefExoticComponent<Omit<FilterAdd1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1730
+
1731
+ /**
1732
+ * Props for the FilterEdit1 icon component
1733
+ * @property {number | string} [size] - Size of the icon (default: 24)
1734
+ */
1735
+ interface FilterEdit1Props extends React.SVGProps<SVGSVGElement> {
1736
+ size?: number | string;
1737
+ }
1738
+ /**
1739
+ * FilterEdit1 icon component
1740
+ * @example
1741
+ * ```tsx
1742
+ * import { FilterEdit1 } from 'magick-icons';
1743
+ *
1744
+ * <FilterEdit1 size={24} className="text-blue-500" strokeWidth={2} />
1745
+ * ```
1746
+ */
1747
+ declare const FilterEdit1: React.ForwardRefExoticComponent<Omit<FilterEdit1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1748
+
1749
+ /**
1750
+ * Props for the FilterRemove1 icon component
1751
+ * @property {number | string} [size] - Size of the icon (default: 24)
1752
+ */
1753
+ interface FilterRemove1Props extends React.SVGProps<SVGSVGElement> {
1754
+ size?: number | string;
1755
+ }
1756
+ /**
1757
+ * FilterRemove1 icon component
1758
+ * @example
1759
+ * ```tsx
1760
+ * import { FilterRemove1 } from 'magick-icons';
1761
+ *
1762
+ * <FilterRemove1 size={24} className="text-blue-500" strokeWidth={2} />
1763
+ * ```
1764
+ */
1765
+ declare const FilterRemove1: React.ForwardRefExoticComponent<Omit<FilterRemove1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1766
+
1767
+ /**
1768
+ * Props for the FilterSearch1 icon component
1769
+ * @property {number | string} [size] - Size of the icon (default: 24)
1770
+ */
1771
+ interface FilterSearch1Props extends React.SVGProps<SVGSVGElement> {
1772
+ size?: number | string;
1773
+ }
1774
+ /**
1775
+ * FilterSearch1 icon component
1776
+ * @example
1777
+ * ```tsx
1778
+ * import { FilterSearch1 } from 'magick-icons';
1779
+ *
1780
+ * <FilterSearch1 size={24} className="text-blue-500" strokeWidth={2} />
1781
+ * ```
1782
+ */
1783
+ declare const FilterSearch1: React.ForwardRefExoticComponent<Omit<FilterSearch1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1784
+
1785
+ /**
1786
+ * Props for the FilterSquare1 icon component
1787
+ * @property {number | string} [size] - Size of the icon (default: 24)
1788
+ */
1789
+ interface FilterSquare1Props extends React.SVGProps<SVGSVGElement> {
1790
+ size?: number | string;
1791
+ }
1792
+ /**
1793
+ * FilterSquare1 icon component
1794
+ * @example
1795
+ * ```tsx
1796
+ * import { FilterSquare1 } from 'magick-icons';
1797
+ *
1798
+ * <FilterSquare1 size={24} className="text-blue-500" strokeWidth={2} />
1799
+ * ```
1800
+ */
1801
+ declare const FilterSquare1: React.ForwardRefExoticComponent<Omit<FilterSquare1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1802
+
1803
+ /**
1804
+ * Props for the FilterTick1 icon component
1805
+ * @property {number | string} [size] - Size of the icon (default: 24)
1806
+ */
1807
+ interface FilterTick1Props extends React.SVGProps<SVGSVGElement> {
1808
+ size?: number | string;
1809
+ }
1810
+ /**
1811
+ * FilterTick1 icon component
1812
+ * @example
1813
+ * ```tsx
1814
+ * import { FilterTick1 } from 'magick-icons';
1815
+ *
1816
+ * <FilterTick1 size={24} className="text-blue-500" strokeWidth={2} />
1817
+ * ```
1818
+ */
1819
+ declare const FilterTick1: React.ForwardRefExoticComponent<Omit<FilterTick1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1820
+
1695
1821
  /**
1696
1822
  * Props for the Finance icon component
1697
1823
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -1728,6 +1854,96 @@ interface FlagProps extends React.SVGProps<SVGSVGElement> {
1728
1854
  */
1729
1855
  declare const Flag: React.ForwardRefExoticComponent<Omit<FlagProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1730
1856
 
1857
+ /**
1858
+ * Props for the Flag1 icon component
1859
+ * @property {number | string} [size] - Size of the icon (default: 24)
1860
+ */
1861
+ interface Flag1Props extends React.SVGProps<SVGSVGElement> {
1862
+ size?: number | string;
1863
+ }
1864
+ /**
1865
+ * Flag1 icon component
1866
+ * @example
1867
+ * ```tsx
1868
+ * import { Flag1 } from 'magick-icons';
1869
+ *
1870
+ * <Flag1 size={24} className="text-blue-500" strokeWidth={2} />
1871
+ * ```
1872
+ */
1873
+ declare const Flag1: React.ForwardRefExoticComponent<Omit<Flag1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1874
+
1875
+ /**
1876
+ * Props for the Flag21 icon component
1877
+ * @property {number | string} [size] - Size of the icon (default: 24)
1878
+ */
1879
+ interface Flag21Props extends React.SVGProps<SVGSVGElement> {
1880
+ size?: number | string;
1881
+ }
1882
+ /**
1883
+ * Flag21 icon component
1884
+ * @example
1885
+ * ```tsx
1886
+ * import { Flag21 } from 'magick-icons';
1887
+ *
1888
+ * <Flag21 size={24} className="text-blue-500" strokeWidth={2} />
1889
+ * ```
1890
+ */
1891
+ declare const Flag21: React.ForwardRefExoticComponent<Omit<Flag21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1892
+
1893
+ /**
1894
+ * Props for the Flash1 icon component
1895
+ * @property {number | string} [size] - Size of the icon (default: 24)
1896
+ */
1897
+ interface Flash1Props extends React.SVGProps<SVGSVGElement> {
1898
+ size?: number | string;
1899
+ }
1900
+ /**
1901
+ * Flash1 icon component
1902
+ * @example
1903
+ * ```tsx
1904
+ * import { Flash1 } from 'magick-icons';
1905
+ *
1906
+ * <Flash1 size={24} className="text-blue-500" strokeWidth={2} />
1907
+ * ```
1908
+ */
1909
+ declare const Flash1: React.ForwardRefExoticComponent<Omit<Flash1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1910
+
1911
+ /**
1912
+ * Props for the FlashCircle1 icon component
1913
+ * @property {number | string} [size] - Size of the icon (default: 24)
1914
+ */
1915
+ interface FlashCircle1Props extends React.SVGProps<SVGSVGElement> {
1916
+ size?: number | string;
1917
+ }
1918
+ /**
1919
+ * FlashCircle1 icon component
1920
+ * @example
1921
+ * ```tsx
1922
+ * import { FlashCircle1 } from 'magick-icons';
1923
+ *
1924
+ * <FlashCircle1 size={24} className="text-blue-500" strokeWidth={2} />
1925
+ * ```
1926
+ */
1927
+ declare const FlashCircle1: React.ForwardRefExoticComponent<Omit<FlashCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1928
+
1929
+ /**
1930
+ * Props for the FlashCircle11 icon component
1931
+ * @property {number | string} [size] - Size of the icon (default: 24)
1932
+ */
1933
+ interface FlashCircle11Props extends React.SVGProps<SVGSVGElement> {
1934
+ size?: number | string;
1935
+ }
1936
+ /**
1937
+ * FlashCircle11 icon component
1938
+ * @example
1939
+ * ```tsx
1940
+ * import { FlashCircle11 } from 'magick-icons';
1941
+ *
1942
+ * <FlashCircle11 size={24} className="text-blue-500" strokeWidth={2} />
1943
+ * ```
1944
+ */
1945
+ declare const FlashCircle11: React.ForwardRefExoticComponent<Omit<FlashCircle11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1946
+
1731
1947
  /**
1732
1948
  * Props for the Folder2 icon component
1733
1949
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -2592,4 +2808,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
2592
2808
  */
2593
2809
  declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
2594
2810
 
2595
- export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, BookmarkFilled, type BookmarkFilledProps, Box21, type Box21Props, BoxAdd1, type BoxAdd1Props, BoxRemove1, type BoxRemove1Props, BoxSearch1, type BoxSearch1Props, BoxTick1, type BoxTick1Props, BoxTime1, type BoxTime1Props, Brush1, Brush11, type Brush11Props, type Brush1Props, Brush21, type Brush21Props, Brush31, type Brush31Props, Brush41, type Brush41Props, BrushSquare1, type BrushSquare1Props, Bubble1, type Bubble1Props, Bucket1, type Bucket1Props, BucketCircle1, type BucketCircle1Props, BucketSquare1, type BucketSquare1Props, Cake1, type Cake1Props, Calendar, type CalendarProps, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, CardanoAda, type CardanoAdaProps, Cards1, Cards11, type Cards11Props, type Cards1Props, Cd1, type Cd1Props, Centralized1, type Centralized1Props, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Coin1, type Coin1Props, Coins1, type Coins1Props, ColorSwatch1, type ColorSwatch1Props, Colorfilter1, type Colorfilter1Props, ColorsSquare1, type ColorsSquare1Props, Component1, type Component1Props, Computing1, type Computing1Props, Convert3dCube1, type Convert3dCube1Props, ConvertCard1, type ConvertCard1Props, Convertshape1, type Convertshape1Props, Convertshape21, type Convertshape21Props, Crop1, Crop11, type Crop11Props, type Crop1Props, Crown1, Crown11, type Crown11Props, type Crown1Props, Cup1, Cup11, type Cup11Props, type Cup1Props, Danger1, type Danger1Props, Designtools1, type Designtools1Props, DeviceMessage1, type DeviceMessage1Props, Diamonds1, Diamonds11, type Diamonds11Props, type Diamonds1Props, DiscountShape1, type DiscountShape1Props, Discover1, Discover11, type Discover11Props, type Discover1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, EmptyWalletAdd1, type EmptyWalletAdd1Props, EmptyWalletChange1, type EmptyWalletChange1Props, EmptyWalletRemove1, type EmptyWalletRemove1Props, EmptyWalletTick1, type EmptyWalletTick1Props, EmptyWalletTime1, type EmptyWalletTime1Props, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
2811
+ export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, BookmarkFilled, type BookmarkFilledProps, Box21, type Box21Props, BoxAdd1, type BoxAdd1Props, BoxRemove1, type BoxRemove1Props, BoxSearch1, type BoxSearch1Props, BoxTick1, type BoxTick1Props, BoxTime1, type BoxTime1Props, Brush1, Brush11, type Brush11Props, type Brush1Props, Brush21, type Brush21Props, Brush31, type Brush31Props, Brush41, type Brush41Props, BrushSquare1, type BrushSquare1Props, Bubble1, type Bubble1Props, Bucket1, type Bucket1Props, BucketCircle1, type BucketCircle1Props, BucketSquare1, type BucketSquare1Props, Cake1, type Cake1Props, Calendar, type CalendarProps, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, CardanoAda, type CardanoAdaProps, Cards1, Cards11, type Cards11Props, type Cards1Props, Cd1, type Cd1Props, Centralized1, type Centralized1Props, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Coin1, type Coin1Props, Coins1, type Coins1Props, ColorSwatch1, type ColorSwatch1Props, Colorfilter1, type Colorfilter1Props, ColorsSquare1, type ColorsSquare1Props, Component1, type Component1Props, Computing1, type Computing1Props, Convert3dCube1, type Convert3dCube1Props, ConvertCard1, type ConvertCard1Props, Convertshape1, type Convertshape1Props, Convertshape21, type Convertshape21Props, Crop1, Crop11, type Crop11Props, type Crop1Props, Crown1, Crown11, type Crown11Props, type Crown1Props, Cup1, Cup11, type Cup11Props, type Cup1Props, Danger1, type Danger1Props, Designtools1, type Designtools1Props, DeviceMessage1, type DeviceMessage1Props, Diamonds1, Diamonds11, type Diamonds11Props, type Diamonds1Props, DiscountShape1, type DiscountShape1Props, Discover1, Discover11, type Discover11Props, type Discover1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, EmptyWalletAdd1, type EmptyWalletAdd1Props, EmptyWalletChange1, type EmptyWalletChange1Props, EmptyWalletRemove1, type EmptyWalletRemove1Props, EmptyWalletTick1, type EmptyWalletTick1Props, EmptyWalletTime1, type EmptyWalletTime1Props, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Filter1, type Filter1Props, FilterAdd1, type FilterAdd1Props, FilterEdit1, type FilterEdit1Props, FilterRemove1, type FilterRemove1Props, FilterSearch1, type FilterSearch1Props, FilterSquare1, type FilterSquare1Props, FilterTick1, type FilterTick1Props, Finance, type FinanceProps, Flag, Flag1, type Flag1Props, Flag21, type Flag21Props, type FlagProps, Flash1, type Flash1Props, FlashCircle1, FlashCircle11, type FlashCircle11Props, type FlashCircle1Props, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };