Emoji Picker is a simple and customizable emoji picker component for your web applications. It allows users to easily select and insert emojis into text fields or other components.
- Wide range of emojis.
- Easy to integrate and customize.
- Lightweight and fast.
- Supports multiple platforms and browsers.
You can install the Emoji Picker using npm:
npm install emoji-pickerOr you can clone the repository directly:
git clone https://github.com/Macgyver02/Emoji-Picker.gitHere’s a basic example of how to use the Emoji Picker in your project:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Emoji Picker Example</title>
<link rel="stylesheet" href="path/to/emoji-picker.css">
</head>
<body>
<textarea id="emoji-textarea"></textarea>
<div id="emoji-picker"></div>
<script src="path/to/emoji-picker.js"></script>
<script>
const picker = new EmojiPicker({
triggerElement: document.getElementById('emoji-textarea'),
pickerElement: document.getElementById('emoji-picker')
});
</script>
</body>
</html>Contributions are welcome! If you find a bug or have a feature request, please open an issue or submit a pull request. For more details, check out the contributing guidelines.
This project is licensed under the MIT License. See the LICENSE file for more information.
Copy this content into your `README.md` file in your repository. Adjust paths, links, and any other details specific to your project as needed.