tg-icon-pack 1.0.21 → 1.0.22

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 { HTMLAttributes } from 'react';
2
+
3
+ export interface iconProps extends HTMLAttributes<HTMLElement> {
4
+ className?: string;
5
+ }
6
+
7
+ declare const CheckVerified: (props: iconProps) => JSX.Element;
8
+
9
+ export default CheckVerified;
@@ -0,0 +1,9 @@
1
+ import styles from "../icons.module.scss";
2
+ import {jsx as _jsx} from "react/jsx-runtime";
3
+
4
+ export default function CheckVerified({className = ""}) {
5
+ return /*#__PURE__*/_jsx("i", {
6
+ className: `${styles.icon} ${className}`,
7
+ children: "\ue984"
8
+ });
9
+ };
@@ -0,0 +1,9 @@
1
+ import { HTMLAttributes } from 'react';
2
+
3
+ export interface iconProps extends HTMLAttributes<HTMLElement> {
4
+ className?: string;
5
+ }
6
+
7
+ declare const Filter: (props: iconProps) => JSX.Element;
8
+
9
+ export default Filter;
@@ -0,0 +1,9 @@
1
+ import styles from "../icons.module.scss";
2
+ import {jsx as _jsx} from "react/jsx-runtime";
3
+
4
+ export default function Filter({className = ""}) {
5
+ return /*#__PURE__*/_jsx("i", {
6
+ className: `${styles.icon} ${className}`,
7
+ children: "\ue982"
8
+ });
9
+ };
@@ -0,0 +1,9 @@
1
+ import { HTMLAttributes } from 'react';
2
+
3
+ export interface iconProps extends HTMLAttributes<HTMLElement> {
4
+ className?: string;
5
+ }
6
+
7
+ declare const Target: (props: iconProps) => JSX.Element;
8
+
9
+ export default Target;
@@ -0,0 +1,9 @@
1
+ import styles from "../icons.module.scss";
2
+ import {jsx as _jsx} from "react/jsx-runtime";
3
+
4
+ export default function Target({className = ""}) {
5
+ return /*#__PURE__*/_jsx("i", {
6
+ className: `${styles.icon} ${className}`,
7
+ children: "\ue983"
8
+ });
9
+ };
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "tg-icon-pack",
3
3
  "main": "index.js",
4
4
  "description": "TeklifimGelsin Custom Icon Pack",
5
- "version": "1.0.21",
5
+ "version": "1.0.22",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
8
8
  },