{"id":22669266,"url":"https://github.com/dextor-io/component.dextor.io","last_synced_at":"2026-02-15T19:33:09.998Z","repository":{"id":263272039,"uuid":"889858474","full_name":"dextor-io/component.dextor.io","owner":"dextor-io","description":"Dextor Components is a lightweight and modular React component library designed to streamline UI development. Built with Tailwind CSS and Vite, it offers a collection of reusable, customizable components to help developers create responsive and modern user interfaces effortlessly.","archived":false,"fork":false,"pushed_at":"2024-11-22T13:09:20.000Z","size":415,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-22T16:14:46.942Z","etag":null,"topics":["component","design","frontend","functional-components","javascript","react","reuseable-components","ui","ui-components"],"latest_commit_sha":null,"homepage":"https://components.dextor.io/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dextor-io.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-11-17T12:31:03.000Z","updated_at":"2024-11-22T13:06:12.000Z","dependencies_parsed_at":"2025-04-12T11:11:02.263Z","dependency_job_id":"079a346b-34c7-4641-9245-472a3d93eeb5","html_url":"https://github.com/dextor-io/component.dextor.io","commit_stats":null,"previous_names":["dextor-io/component.dextor.io"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dextor-io/component.dextor.io","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dextor-io%2Fcomponent.dextor.io","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dextor-io%2Fcomponent.dextor.io/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dextor-io%2Fcomponent.dextor.io/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dextor-io%2Fcomponent.dextor.io/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dextor-io","download_url":"https://codeload.github.com/dextor-io/component.dextor.io/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dextor-io%2Fcomponent.dextor.io/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29487462,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T19:29:10.908Z","status":"ssl_error","status_checked_at":"2026-02-15T19:29:10.419Z","response_time":118,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["component","design","frontend","functional-components","javascript","react","reuseable-components","ui","ui-components"],"created_at":"2024-12-09T15:19:52.977Z","updated_at":"2026-02-15T19:33:09.980Z","avatar_url":"https://github.com/dextor-io.png","language":"JavaScript","readme":"# **Dextor Components**\n\nA modern React component library built with Vite and styled with Tailwind CSS. This library offers a set of reusable, customizable, and accessible UI components for rapid development.\n\n[![NPM](https://img.shields.io/npm/v/dextor-components.svg)](https://www.npmjs.com/package/dextor-components)\n[![License](https://img.shields.io/npm/l/dextor-components)](https://github.com/dextor-io/components.dextor.io/blob/main/LICENSE)\n[![Downloads](https://img.shields.io/npm/dm/dextor-components)](https://www.npmjs.com/package/dextor-components)\n\n## 🚀 **Features**\n\n- **Lightweight \u0026 Fast**: Built with Vite for blazing-fast development.\n- **Tailwind CSS Support**: Pre-styled components using Tailwind CSS for a consistent design system.\n- **Customizable**: Easily extend and customize components to match your branding.\n- **Accessible**: Components adhere to accessibility standards for an inclusive user experience.\n- **Modular**: Import only what you need to optimize performance.\n\n---\n\n## 🌐 Website\n\nDiscover full documentation, live previews, and component guides on our official website:\n👉 https://components.dextor.io/\n\n---\n\n## 📦 **Installation**\n\nInstall the package via npm or yarn:\n\n```bash\nnpm i dextor-components\n```\n\n---\n\n## 🔧 **Setup**\n\nTo use the components, ensure you have Tailwind CSS set up in your project. Follow these steps:\n\n1. Install and configure Tailwind CSS in your React project. [Tailwind CSS Docs](https://tailwindcss.com/docs/installation)\n\n2. Add the following to your `tailwind.config.js` file to include the library's styles:\n\n```javascript\nmodule.exports = {\n  content: [\n    \"./src/**/*.{js,jsx,ts,tsx}\",\n    \"./node_modules/@dextor/components/**/*.{js,jsx}\",\n  ],\n  theme: {\n    extend: {},\n  },\n  plugins: [],\n};\n```\n\n3. Import the component styles in your entry file (e.g., `index.css`):\n\n```css\n@import \"@dextor/main.css\";\n```\n\n---\n\n## ✨ **Usage**\n\nHere's an example of how to use a component from the library:\n\n```jsx\nimport { Button } from \"dextor-components\";\n\nfunction App() {\n  return (\n    \u003cdiv className=\"p-4\"\u003e\n      \u003cButton variant=\"primary\" onClick={() =\u003e alert(\"Hello, Dextor!\")}\u003e\n        Click Me\n      \u003c/Button\u003e\n    \u003c/div\u003e\n  );\n}\n\nexport default App;\n```\n\n## 🛠️ **Development**\n\nDo you want to contribute or explore the source code? Clone the repository:\n\n```bash\ngit clone https://github.com/dextor-io/components.dextor.io.git\ncd components.dextor.io\nnpm install\nnpm run dev\n```\n\n---\n\n## 🤝 **Contributing**\n\nContributions are welcome! Feel free to open issues, suggest improvements, or submit pull requests. See the [CONTRIBUTING.md](CONTRIBUTING.md) file for guidelines.\n\n---\n\n## 📜 **License**\n\nThis project is licensed under the [MIT License](LICENSE).\n\n---\n\n## 📢 **Feedback**\n\nWe’d love to hear your thoughts! Open an issue or reach out to us on [GitHub](https://github.com/dextor-io/).\n\n---\n\nStart building modern, elegant UIs with **Dextor Components**! 🚀\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdextor-io%2Fcomponent.dextor.io","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdextor-io%2Fcomponent.dextor.io","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdextor-io%2Fcomponent.dextor.io/lists"}