mx-icons 1.0.8 → 1.0.13
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/README.md +193 -127
- package/dist/components/cancel-circle/CancelCircleBold.js +30 -0
- package/dist/components/cancel-circle/CancelCircleLinear.js +45 -0
- package/dist/components/cancel-circle/index.js +21 -0
- package/dist/components/checkmark-circle-02/CheckmarkCircle02Bold.js +32 -0
- package/dist/components/checkmark-circle-02/CheckmarkCircle02Linear.js +34 -0
- package/dist/components/checkmark-circle-02/index.js +21 -0
- package/dist/components/discord/DiscordBold.js +32 -0
- package/dist/components/discord/DiscordLinear.js +59 -0
- package/dist/components/discord/index.js +21 -0
- package/dist/components/facebook/FacebookBold.js +25 -0
- package/dist/components/facebook/FacebookLinear.js +24 -0
- package/dist/components/facebook/index.js +21 -0
- package/dist/components/github/GithubBold.js +32 -0
- package/dist/components/github/GithubBulk.js +53 -0
- package/dist/components/github/GithubLinear.js +45 -0
- package/dist/components/github/index.js +29 -0
- package/dist/components/linkedin/LinkedInBold.js +25 -0
- package/dist/components/linkedin/LinkedInLinear.js +24 -0
- package/dist/components/linkedin/index.js +21 -0
- package/dist/components/mail-02/Mail02Bold.js +32 -0
- package/dist/components/mail-02/Mail02Linear.js +44 -0
- package/dist/components/mail-02/index.js +21 -0
- package/dist/components/new-twitter/NewTwitterBulk.js +43 -0
- package/dist/components/new-twitter/NewTwitterLinear.js +33 -0
- package/dist/components/new-twitter/index.js +21 -0
- package/dist/components/twitch/TwitchBold.js +32 -0
- package/dist/components/twitch/TwitchLinear.js +42 -0
- package/dist/components/twitch/index.js +21 -0
- package/dist/components/twitter/TwitterBold.js +32 -0
- package/dist/components/twitter/TwitterLinear.js +32 -0
- package/dist/components/twitter/index.js +21 -0
- package/dist/components/youtube/YoutubeBold.js +32 -0
- package/dist/components/youtube/YoutubeLinear.js +42 -0
- package/dist/components/youtube/index.js +21 -0
- package/dist/favicon.ico +0 -0
- package/dist/index.js +112 -0
- package/dist/manifest.json +24 -0
- package/dist/maskable_icon.png +0 -0
- package/dist/mx-icons-bg.png +0 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,127 +1,193 @@
|
|
|
1
|
-
<div align="center">
|
|
2
|
-
|
|
3
|
-

|
|
4
|
-
|
|
5
|
-

|
|
6
|
-

|
|
7
|
-

|
|
8
|
-

|
|
9
|
-
|
|
10
|
-
**A modern, lightweight React icon library with beautiful SVG icons**
|
|
11
|
-
|
|
12
|
-
Built with React • Optimized for Production
|
|
13
|
-
|
|
14
|
-
[Live Demo](https://mx-icons.vercel.app/) • [Browse Icons](#-available-icons) • [Documentation](#-usage) • [Contributing](#-contributing)
|
|
15
|
-
|
|
16
|
-
</div>
|
|
17
|
-
|
|
18
|
-
---
|
|
19
|
-
|
|
20
|
-
## ✨ Features
|
|
21
|
-
|
|
22
|
-
- 🎨 **Multiple Variants** - Every icon comes in outline, solid, and mini (16px) versions
|
|
23
|
-
- ⚡ **Lightweight & Fast** - Tree-shakeable, only imports what you use
|
|
24
|
-
- 🔧 **Fully Customizable** - Control size, color, and all SVG attributes
|
|
25
|
-
- 📦 **Zero Dependencies** - Only React as a peer dependency (18.x or 19.x)
|
|
26
|
-
- 💅 **Modern Design** - Clean, professional icons optimized for light-mode interfaces
|
|
27
|
-
- 📱 **Responsive** - Built-in support for different sizes (24px standard, 16px mini)
|
|
28
|
-
|
|
29
|
-
## 📦 Installation
|
|
30
|
-
|
|
31
|
-
```bash
|
|
32
|
-
npm install mx-icons
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
## 🚀 Quick Start
|
|
36
|
-
|
|
37
|
-
```jsx
|
|
38
|
-
import { NoteTextLinear } from "mx-icons";
|
|
39
|
-
|
|
40
|
-
function App() {
|
|
41
|
-
return (
|
|
42
|
-
<div>
|
|
43
|
-
<NoteTextLinear />
|
|
44
|
-
|
|
45
|
-
<NoteTextLinear size={24} color="#292D32" />
|
|
46
|
-
</div>
|
|
47
|
-
);
|
|
48
|
-
}
|
|
49
|
-
```
|
|
50
|
-
|
|
51
|
-
## 🎨 Props & Customization
|
|
52
|
-
|
|
53
|
-
All icon components accept the following props:
|
|
54
|
-
|
|
55
|
-
| Prop | Type | Default | Description |
|
|
56
|
-
| ----------- | ------------------ | ----------- | ------------------------------------------ |
|
|
57
|
-
| `size` | `number \| string` | `24` | Icon width and height (px or any CSS unit) |
|
|
58
|
-
| `color` | `string` | `"#292D32"` | Icon color (any CSS color) |
|
|
59
|
-
| `className` | `string` | `""` | Additional CSS classes |
|
|
60
|
-
|
|
61
|
-
### Run Preview Locally
|
|
62
|
-
|
|
63
|
-
```bash
|
|
64
|
-
# Clone the repository
|
|
65
|
-
git clone https://github.com/ig-imanish/mx-icons.git
|
|
66
|
-
cd mx-icons
|
|
67
|
-
|
|
68
|
-
# Install dependencies
|
|
69
|
-
npm install
|
|
70
|
-
|
|
71
|
-
# Start the preview app
|
|
72
|
-
npm run dev
|
|
73
|
-
```
|
|
74
|
-
|
|
75
|
-
Open [http://localhost:5173](http://localhost:5173) in your browser.
|
|
76
|
-
|
|
77
|
-
## 🤝 Contributing
|
|
78
|
-
|
|
79
|
-
We welcome contributions! Here's how you can help make MX Icons even better:
|
|
80
|
-
|
|
81
|
-
### Ways to Contribute
|
|
82
|
-
|
|
83
|
-
- 🐛 **Report Bugs** - [Open
|
|
84
|
-
- 💡 **Request Icons** - Tell us which icons you need
|
|
85
|
-
- 🎨 **Add New Icons** -
|
|
86
|
-
- 📖 **Improve
|
|
87
|
-
-
|
|
88
|
-
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
3
|
+

|
|
4
|
+
|
|
5
|
+

|
|
6
|
+

|
|
7
|
+

|
|
8
|
+

|
|
9
|
+
|
|
10
|
+
**A modern, lightweight React icon library with beautiful SVG icons**
|
|
11
|
+
|
|
12
|
+
Built with React • Optimized for Production
|
|
13
|
+
|
|
14
|
+
[Live Demo](https://mx-icons.vercel.app/) • [Browse Icons](#-available-icons) • [Documentation](#-usage) • [Contributing](#-contributing)
|
|
15
|
+
|
|
16
|
+
</div>
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## ✨ Features
|
|
21
|
+
|
|
22
|
+
- 🎨 **Multiple Variants** - Every icon comes in outline, solid, and mini (16px) versions
|
|
23
|
+
- ⚡ **Lightweight & Fast** - Tree-shakeable, only imports what you use
|
|
24
|
+
- 🔧 **Fully Customizable** - Control size, color, and all SVG attributes
|
|
25
|
+
- 📦 **Zero Dependencies** - Only React as a peer dependency (18.x or 19.x)
|
|
26
|
+
- 💅 **Modern Design** - Clean, professional icons optimized for light-mode interfaces
|
|
27
|
+
- 📱 **Responsive** - Built-in support for different sizes (24px standard, 16px mini)
|
|
28
|
+
|
|
29
|
+
## 📦 Installation
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
npm install mx-icons
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## 🚀 Quick Start
|
|
36
|
+
|
|
37
|
+
```jsx
|
|
38
|
+
import { NoteTextLinear } from "mx-icons";
|
|
39
|
+
|
|
40
|
+
function App() {
|
|
41
|
+
return (
|
|
42
|
+
<div>
|
|
43
|
+
<NoteTextLinear />
|
|
44
|
+
|
|
45
|
+
<NoteTextLinear size={24} color="#292D32" />
|
|
46
|
+
</div>
|
|
47
|
+
);
|
|
48
|
+
}
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
## 🎨 Props & Customization
|
|
52
|
+
|
|
53
|
+
All icon components accept the following props:
|
|
54
|
+
|
|
55
|
+
| Prop | Type | Default | Description |
|
|
56
|
+
| ----------- | ------------------ | ----------- | ------------------------------------------ |
|
|
57
|
+
| `size` | `number \| string` | `24` | Icon width and height (px or any CSS unit) |
|
|
58
|
+
| `color` | `string` | `"#292D32"` | Icon color (any CSS color) |
|
|
59
|
+
| `className` | `string` | `""` | Additional CSS classes |
|
|
60
|
+
|
|
61
|
+
### Run Preview Locally
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
# Clone the repository
|
|
65
|
+
git clone https://github.com/ig-imanish/mx-icons.git
|
|
66
|
+
cd mx-icons
|
|
67
|
+
|
|
68
|
+
# Install dependencies
|
|
69
|
+
npm install
|
|
70
|
+
|
|
71
|
+
# Start the preview app
|
|
72
|
+
npm run dev
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
Open [http://localhost:5173](http://localhost:5173) in your browser.
|
|
76
|
+
|
|
77
|
+
## 🤝 Contributing
|
|
78
|
+
|
|
79
|
+
We welcome contributions from developers of all skill levels! Here's how you can help make MX Icons even better:
|
|
80
|
+
|
|
81
|
+
### Ways to Contribute
|
|
82
|
+
|
|
83
|
+
- 🐛 **Report Bugs** - Found an issue? [Open a bug report](https://github.com/ig-imanish/mx-icons/issues/new)
|
|
84
|
+
- 💡 **Request Icons** - Tell us which icons you need for your projects
|
|
85
|
+
- 🎨 **Add New Icons** - Contribute new icons following our design guidelines
|
|
86
|
+
- 📖 **Improve Documentation** - Help make our docs clearer and more comprehensive
|
|
87
|
+
- 🔧 **Fix Issues** - Browse [open issues](https://github.com/ig-imanish/mx-icons/issues) and submit fixes
|
|
88
|
+
- ⭐ **Star the Repo** - Show your support and help us grow!
|
|
89
|
+
- 🐦 **Share** - Spread the word about MX Icons
|
|
90
|
+
|
|
91
|
+
### Quick Start for Contributors
|
|
92
|
+
|
|
93
|
+
1. **Fork** the repository
|
|
94
|
+
2. **Clone** your fork: `git clone https://github.com/YOUR_USERNAME/mx-icons.git`
|
|
95
|
+
3. **Install** dependencies: `npm install`
|
|
96
|
+
4. **Create** a feature branch: `git checkout -b feature/new-icon`
|
|
97
|
+
5. **Make** your changes and test: `npm run dev`
|
|
98
|
+
6. **Lint** your code: `npm run lint`
|
|
99
|
+
7. **Build** the library: `npm run build:lib`
|
|
100
|
+
8. **Commit** with a clear message: `git commit -m "feat(icons): add calendar icon"`
|
|
101
|
+
9. **Push** to your fork: `git push origin feature/new-icon`
|
|
102
|
+
10. **Submit** a pull request
|
|
103
|
+
|
|
104
|
+
### Development Setup
|
|
105
|
+
|
|
106
|
+
```bash
|
|
107
|
+
# Clone the repository
|
|
108
|
+
git clone https://github.com/ig-imanish/mx-icons.git
|
|
109
|
+
cd mx-icons
|
|
110
|
+
|
|
111
|
+
# Install dependencies
|
|
112
|
+
npm install
|
|
113
|
+
|
|
114
|
+
# Start development server
|
|
115
|
+
npm run dev
|
|
116
|
+
|
|
117
|
+
# Run linter
|
|
118
|
+
npm run lint
|
|
119
|
+
|
|
120
|
+
# Build library
|
|
121
|
+
npm run build:lib
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
### Adding a New Icon
|
|
125
|
+
|
|
126
|
+
Icons should follow these guidelines:
|
|
127
|
+
- **Format**: Optimized SVG
|
|
128
|
+
- **Size**: 24x24px (standard) or 16x16px (mini)
|
|
129
|
+
- **Variants**: Provide Linear, Bold, and Mini versions
|
|
130
|
+
- **Color**: Use `currentColor` for easy customization
|
|
131
|
+
- **Naming**: PascalCase with variant suffix (e.g., `CalendarLinear`, `CalendarBold`)
|
|
132
|
+
|
|
133
|
+
Example icon component:
|
|
134
|
+
|
|
135
|
+
```jsx
|
|
136
|
+
import React from "react";
|
|
137
|
+
import Icon from "../../Icon";
|
|
138
|
+
|
|
139
|
+
export const CalendarLinear = (props) => (
|
|
140
|
+
<Icon {...props}>
|
|
141
|
+
<path d="..." fill="none" stroke="currentColor" strokeWidth="1.5" />
|
|
142
|
+
</Icon>
|
|
143
|
+
);
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
### Commit Message Format
|
|
147
|
+
|
|
148
|
+
We follow [Conventional Commits](https://www.conventionalcommits.org/):
|
|
149
|
+
|
|
150
|
+
```
|
|
151
|
+
feat(icons): add calendar icon with all variants
|
|
152
|
+
fix(modal): resolve scrollbar display issue
|
|
153
|
+
docs(readme): update installation guide
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
### Pull Request Guidelines
|
|
157
|
+
|
|
158
|
+
- Provide a clear description of your changes
|
|
159
|
+
- Include screenshots for visual changes
|
|
160
|
+
- Reference related issues (e.g., "Closes #123")
|
|
161
|
+
- Ensure all tests pass and linting is clean
|
|
162
|
+
- Update documentation if needed
|
|
163
|
+
|
|
164
|
+
For comprehensive guidelines, check out our [**CONTRIBUTING.md**](https://github.com/ig-imanish/mx-icons/blob/main/CONTRIBUTING.md)
|
|
165
|
+
|
|
166
|
+
## 📄 License
|
|
167
|
+
|
|
168
|
+
MIT License © 2025 [MX Icons Contributors](https://github.com/ig-imanish/mx-icons/graphs/contributors)
|
|
169
|
+
|
|
170
|
+
Free to use in personal and commercial projects. See [LICENSE](./LICENSE) for details.
|
|
171
|
+
|
|
172
|
+
## 📊 Project Stats
|
|
173
|
+
|
|
174
|
+

|
|
175
|
+

|
|
176
|
+

|
|
177
|
+

|
|
178
|
+
|
|
179
|
+
## 🔗 Links
|
|
180
|
+
|
|
181
|
+
- **📦 NPM Package:** [npmjs.com/package/mx-icons](https://www.npmjs.com/package/mx-icons)
|
|
182
|
+
- **🌐 Live Preview:** [ig-imanish.github.io/mx-icons](https://ig-imanish.github.io/mx-icons)
|
|
183
|
+
- **📚 Documentation:** [github.com/ig-imanish/mx-icons](https://github.com/ig-imanish/mx-icons)
|
|
184
|
+
- **🐛 Issues:** [github.com/ig-imanish/mx-icons/issues](https://github.com/ig-imanish/mx-icons/issues)
|
|
185
|
+
- **💬 Discussions:** [github.com/ig-imanish/mx-icons/discussions](https://github.com/ig-imanish/mx-icons/discussions)
|
|
186
|
+
|
|
187
|
+
<div align="center">
|
|
188
|
+
|
|
189
|
+
**Made with ❤️ by the open-source community**
|
|
190
|
+
|
|
191
|
+
If you find this project useful, please consider giving it a ⭐ on GitHub!
|
|
192
|
+
|
|
193
|
+
</div>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import Icon from "../../Icon.js";
|
|
4
|
+
function CancelCircleBold({
|
|
5
|
+
size = 24,
|
|
6
|
+
color = "#292D32",
|
|
7
|
+
className = "",
|
|
8
|
+
...props
|
|
9
|
+
}) {
|
|
10
|
+
return /* @__PURE__ */ jsx(
|
|
11
|
+
Icon,
|
|
12
|
+
{
|
|
13
|
+
size,
|
|
14
|
+
color,
|
|
15
|
+
fill: "none",
|
|
16
|
+
className,
|
|
17
|
+
...props,
|
|
18
|
+
children: /* @__PURE__ */ jsx(
|
|
19
|
+
"path",
|
|
20
|
+
{
|
|
21
|
+
d: "M12 1.25C17.9371 1.25 22.75 6.06294 22.75 12C22.75 17.9371 17.9371 22.75 12 22.75C6.06294 22.75 1.25 17.9371 1.25 12C1.25 6.06294 6.06294 1.25 12 1.25ZM9.63086 8.22461C9.2381 7.90427 8.65909 7.92689 8.29297 8.29297C7.92698 8.65909 7.90429 9.23813 8.22461 9.63086L8.29297 9.70703L10.5859 12L8.29395 14.293C7.90357 14.6835 7.90344 15.3166 8.29395 15.707C8.68447 16.0972 9.31758 16.0974 9.70801 15.707L12 13.4141L14.292 15.707L14.3682 15.7754C14.7608 16.0957 15.3399 16.0729 15.7061 15.707C16.0721 15.3411 16.0954 14.7619 15.7754 14.3691L15.7061 14.293L13.4131 12L15.707 9.70703L15.7754 9.63086C16.0957 9.23812 16.073 8.65909 15.707 8.29297C15.3409 7.92689 14.7619 7.90427 14.3691 8.22461L14.293 8.29297L12 10.5859L9.70703 8.29297L9.63086 8.22461Z",
|
|
22
|
+
fill: "currentColor"
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
}
|
|
28
|
+
export {
|
|
29
|
+
CancelCircleBold as default
|
|
30
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import Icon from "../../Icon.js";
|
|
4
|
+
function CancelCircleLinear({
|
|
5
|
+
size = 24,
|
|
6
|
+
color = "#292D32",
|
|
7
|
+
className = "",
|
|
8
|
+
...props
|
|
9
|
+
}) {
|
|
10
|
+
return /* @__PURE__ */ jsxs(
|
|
11
|
+
Icon,
|
|
12
|
+
{
|
|
13
|
+
size,
|
|
14
|
+
color,
|
|
15
|
+
fill: "none",
|
|
16
|
+
className,
|
|
17
|
+
...props,
|
|
18
|
+
children: [
|
|
19
|
+
/* @__PURE__ */ jsx(
|
|
20
|
+
"path",
|
|
21
|
+
{
|
|
22
|
+
d: "M22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12Z",
|
|
23
|
+
stroke: "currentColor",
|
|
24
|
+
strokeWidth: "1.5",
|
|
25
|
+
strokeLinecap: "round",
|
|
26
|
+
strokeLinejoin: "round"
|
|
27
|
+
}
|
|
28
|
+
),
|
|
29
|
+
/* @__PURE__ */ jsx(
|
|
30
|
+
"path",
|
|
31
|
+
{
|
|
32
|
+
d: "M14.9994 15L9 9M9.00064 15L15 9",
|
|
33
|
+
stroke: "currentColor",
|
|
34
|
+
strokeWidth: "1.5",
|
|
35
|
+
strokeLinecap: "round",
|
|
36
|
+
strokeLinejoin: "round"
|
|
37
|
+
}
|
|
38
|
+
)
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
);
|
|
42
|
+
}
|
|
43
|
+
export {
|
|
44
|
+
CancelCircleLinear as default
|
|
45
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import CancelCircleLinear from "./CancelCircleLinear.js";
|
|
2
|
+
import CancelCircleBold from "./CancelCircleBold.js";
|
|
3
|
+
const variants = [
|
|
4
|
+
{
|
|
5
|
+
variant: "linear",
|
|
6
|
+
slug: "cancel-circle-linear",
|
|
7
|
+
Component: CancelCircleLinear,
|
|
8
|
+
componentName: "CancelCircleLinear"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
variant: "bold",
|
|
12
|
+
slug: "cancel-circle-bold",
|
|
13
|
+
Component: CancelCircleBold,
|
|
14
|
+
componentName: "CancelCircleBold"
|
|
15
|
+
}
|
|
16
|
+
];
|
|
17
|
+
export {
|
|
18
|
+
CancelCircleBold,
|
|
19
|
+
CancelCircleLinear,
|
|
20
|
+
variants
|
|
21
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import Icon from "../../Icon.js";
|
|
4
|
+
function CheckmarkCircle02Bold({
|
|
5
|
+
size = 24,
|
|
6
|
+
color = "#292D32",
|
|
7
|
+
className = "",
|
|
8
|
+
...props
|
|
9
|
+
}) {
|
|
10
|
+
return /* @__PURE__ */ jsx(
|
|
11
|
+
Icon,
|
|
12
|
+
{
|
|
13
|
+
size,
|
|
14
|
+
color,
|
|
15
|
+
fill: "none",
|
|
16
|
+
className,
|
|
17
|
+
...props,
|
|
18
|
+
children: /* @__PURE__ */ jsx(
|
|
19
|
+
"path",
|
|
20
|
+
{
|
|
21
|
+
fillRule: "evenodd",
|
|
22
|
+
clipRule: "evenodd",
|
|
23
|
+
d: "M12 22.75C6.06294 22.75 1.25 17.9371 1.25 12C1.25 6.06294 6.06294 1.25 12 1.25C17.9371 1.25 22.75 6.06294 22.75 12C22.75 17.9371 17.9371 22.75 12 22.75ZM15.2473 7.93933L10.453 13.1694L8.69156 11.4079L7.27734 12.8222L10.5159 16.0607L16.7216 9.29078L15.2473 7.93933Z",
|
|
24
|
+
fill: "currentColor"
|
|
25
|
+
}
|
|
26
|
+
)
|
|
27
|
+
}
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
export {
|
|
31
|
+
CheckmarkCircle02Bold as default
|
|
32
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import Icon from "../../Icon.js";
|
|
4
|
+
function CheckmarkCircle02Linear({
|
|
5
|
+
size = 24,
|
|
6
|
+
color = "#292D32",
|
|
7
|
+
className = "",
|
|
8
|
+
...props
|
|
9
|
+
}) {
|
|
10
|
+
return /* @__PURE__ */ jsxs(
|
|
11
|
+
Icon,
|
|
12
|
+
{
|
|
13
|
+
size,
|
|
14
|
+
color,
|
|
15
|
+
fill: "none",
|
|
16
|
+
className,
|
|
17
|
+
...props,
|
|
18
|
+
children: [
|
|
19
|
+
/* @__PURE__ */ jsx(
|
|
20
|
+
"path",
|
|
21
|
+
{
|
|
22
|
+
d: "M22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12Z",
|
|
23
|
+
stroke: "currentColor",
|
|
24
|
+
strokeWidth: "1.5"
|
|
25
|
+
}
|
|
26
|
+
),
|
|
27
|
+
/* @__PURE__ */ jsx("path", { d: "M8 12.5L10.5 15L16 9", stroke: "currentColor", strokeWidth: "1.5" })
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
export {
|
|
33
|
+
CheckmarkCircle02Linear as default
|
|
34
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import CheckmarkCircle02Linear from "./CheckmarkCircle02Linear.js";
|
|
2
|
+
import CheckmarkCircle02Bold from "./CheckmarkCircle02Bold.js";
|
|
3
|
+
const variants = [
|
|
4
|
+
{
|
|
5
|
+
variant: "linear",
|
|
6
|
+
slug: "checkmark-circle-02-linear",
|
|
7
|
+
Component: CheckmarkCircle02Linear,
|
|
8
|
+
componentName: "CheckmarkCircle02Linear"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
variant: "bold",
|
|
12
|
+
slug: "checkmark-circle-02-bold",
|
|
13
|
+
Component: CheckmarkCircle02Bold,
|
|
14
|
+
componentName: "CheckmarkCircle02Bold"
|
|
15
|
+
}
|
|
16
|
+
];
|
|
17
|
+
export {
|
|
18
|
+
CheckmarkCircle02Bold,
|
|
19
|
+
CheckmarkCircle02Linear,
|
|
20
|
+
variants
|
|
21
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import Icon from "../../Icon.js";
|
|
4
|
+
function DiscordBold({
|
|
5
|
+
size = 24,
|
|
6
|
+
color = "#292D32",
|
|
7
|
+
className = "",
|
|
8
|
+
...props
|
|
9
|
+
}) {
|
|
10
|
+
return /* @__PURE__ */ jsx(
|
|
11
|
+
Icon,
|
|
12
|
+
{
|
|
13
|
+
size,
|
|
14
|
+
color,
|
|
15
|
+
fill: "none",
|
|
16
|
+
className,
|
|
17
|
+
...props,
|
|
18
|
+
children: /* @__PURE__ */ jsx(
|
|
19
|
+
"path",
|
|
20
|
+
{
|
|
21
|
+
fillRule: "evenodd",
|
|
22
|
+
clipRule: "evenodd",
|
|
23
|
+
d: "M9.60211 5.48045C9.60211 5.48045 10.7147 5.24976 12 5.24976C13.2853 5.24976 14.3979 5.48045 14.3979 5.48045L15 4.24976C17.5 4.74976 19.5 5.68698 19.5 5.68698C19.5 5.68698 22 8.24976 22 17.2498C19.8658 18.8513 17 19.7498 17 19.7498L15.9484 18.1003L17.5824 17.1752L17.1069 16.8035C17.1069 16.8035 15.2049 17.9447 12 17.9447C8.79507 17.9447 6.89313 16.8035 6.89313 16.8035L6.41764 17.1752L8.05159 18.1003L7 19.7498C7 19.7498 4.13419 18.8513 2 17.2498C2 8.24976 4.5 5.68698 4.5 5.68698C4.5 5.68698 6.5 4.74976 9 4.24976L9.60211 5.48045ZM17.25 12.7498C17.25 13.8543 16.4665 14.7498 15.5 14.7498C14.5335 14.7498 13.75 13.8543 13.75 12.7498C13.75 11.6452 14.5335 10.7498 15.5 10.7498C16.4665 10.7498 17.25 11.6452 17.25 12.7498ZM8.5 14.7498C9.4665 14.7498 10.25 13.8543 10.25 12.7498C10.25 11.6452 9.4665 10.7498 8.5 10.7498C7.5335 10.7498 6.75 11.6452 6.75 12.7498C6.75 13.8543 7.5335 14.7498 8.5 14.7498Z",
|
|
24
|
+
fill: "currentColor"
|
|
25
|
+
}
|
|
26
|
+
)
|
|
27
|
+
}
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
export {
|
|
31
|
+
DiscordBold as default
|
|
32
|
+
};
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import Icon from "../../Icon.js";
|
|
4
|
+
function DiscordLinear({
|
|
5
|
+
size = 24,
|
|
6
|
+
color = "#292D32",
|
|
7
|
+
className = "",
|
|
8
|
+
...props
|
|
9
|
+
}) {
|
|
10
|
+
return /* @__PURE__ */ jsxs(
|
|
11
|
+
Icon,
|
|
12
|
+
{
|
|
13
|
+
size,
|
|
14
|
+
color,
|
|
15
|
+
fill: "none",
|
|
16
|
+
className,
|
|
17
|
+
...props,
|
|
18
|
+
children: [
|
|
19
|
+
/* @__PURE__ */ jsx(
|
|
20
|
+
"path",
|
|
21
|
+
{
|
|
22
|
+
d: "M15.5 17.75L17 19.75C17 19.75 19.8658 18.8516 22 17.25C22 8.25 19.5 5.68722 19.5 5.68722C19.5 5.68722 17.5 4.75 15 4.25L14.3979 5.4807C14.3979 5.4807 13.2853 5.25 12 5.25C10.7147 5.25 9.60211 5.4807 9.60211 5.4807L9 4.25C6.5 4.75 4.5 5.68722 4.5 5.68722C4.5 5.68722 2 8.25 2 17.25C4.13419 18.8516 7 19.75 7 19.75L8.5 17.75",
|
|
23
|
+
stroke: "currentColor",
|
|
24
|
+
strokeWidth: "1.5"
|
|
25
|
+
}
|
|
26
|
+
),
|
|
27
|
+
/* @__PURE__ */ jsx(
|
|
28
|
+
"path",
|
|
29
|
+
{
|
|
30
|
+
d: "M17.5 16.75C17.5 16.75 15.2049 18.25 12 18.25C8.79507 18.25 6.5 16.75 6.5 16.75",
|
|
31
|
+
stroke: "currentColor",
|
|
32
|
+
strokeWidth: "1.5",
|
|
33
|
+
strokeLinecap: "square",
|
|
34
|
+
strokeLinejoin: "round"
|
|
35
|
+
}
|
|
36
|
+
),
|
|
37
|
+
/* @__PURE__ */ jsx(
|
|
38
|
+
"path",
|
|
39
|
+
{
|
|
40
|
+
d: "M17.25 12.25C17.25 13.3546 16.4665 14.25 15.5 14.25C14.5335 14.25 13.75 13.3546 13.75 12.25C13.75 11.1454 14.5335 10.25 15.5 10.25C16.4665 10.25 17.25 11.1454 17.25 12.25Z",
|
|
41
|
+
stroke: "currentColor",
|
|
42
|
+
strokeWidth: "1.5"
|
|
43
|
+
}
|
|
44
|
+
),
|
|
45
|
+
/* @__PURE__ */ jsx(
|
|
46
|
+
"path",
|
|
47
|
+
{
|
|
48
|
+
d: "M10.25 12.25C10.25 13.3546 9.4665 14.25 8.5 14.25C7.5335 14.25 6.75 13.3546 6.75 12.25C6.75 11.1454 7.5335 10.25 8.5 10.25C9.4665 10.25 10.25 11.1454 10.25 12.25Z",
|
|
49
|
+
stroke: "currentColor",
|
|
50
|
+
strokeWidth: "1.5"
|
|
51
|
+
}
|
|
52
|
+
)
|
|
53
|
+
]
|
|
54
|
+
}
|
|
55
|
+
);
|
|
56
|
+
}
|
|
57
|
+
export {
|
|
58
|
+
DiscordLinear as default
|
|
59
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import DiscordLinear from "./DiscordLinear.js";
|
|
2
|
+
import DiscordBold from "./DiscordBold.js";
|
|
3
|
+
const variants = [
|
|
4
|
+
{
|
|
5
|
+
variant: "linear",
|
|
6
|
+
slug: "discord-linear",
|
|
7
|
+
Component: DiscordLinear,
|
|
8
|
+
componentName: "DiscordLinear"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
variant: "bold",
|
|
12
|
+
slug: "discord-bold",
|
|
13
|
+
Component: DiscordBold,
|
|
14
|
+
componentName: "DiscordBold"
|
|
15
|
+
}
|
|
16
|
+
];
|
|
17
|
+
export {
|
|
18
|
+
DiscordBold,
|
|
19
|
+
DiscordLinear,
|
|
20
|
+
variants
|
|
21
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import Icon from "../../Icon.js";
|
|
4
|
+
function FacebookBold({
|
|
5
|
+
size = 24,
|
|
6
|
+
color = "#292D32",
|
|
7
|
+
className = "",
|
|
8
|
+
...props
|
|
9
|
+
}) {
|
|
10
|
+
return /* @__PURE__ */ jsx(
|
|
11
|
+
Icon,
|
|
12
|
+
{
|
|
13
|
+
size,
|
|
14
|
+
color,
|
|
15
|
+
fill: "currentColor",
|
|
16
|
+
viewBox: "0 0 512 512",
|
|
17
|
+
className,
|
|
18
|
+
...props,
|
|
19
|
+
children: /* @__PURE__ */ jsx("path", { d: "M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256C0 376 82.7 476.8 194.2 504.5V334.2H141.4V256h52.8V222.3c0-87.1 39.4-127.5 125-127.5c16.2 0 44.2 3.2 55.7 6.4V172c-6-.6-16.5-1-29.6-1c-42 0-58.2 15.9-58.2 57.2V256h83.6l-14.4 78.2H287V510.1C413.8 494.8 512 386.9 512 256h0z", fill: "currentColor" })
|
|
20
|
+
}
|
|
21
|
+
);
|
|
22
|
+
}
|
|
23
|
+
export {
|
|
24
|
+
FacebookBold as default
|
|
25
|
+
};
|