{"id":29668110,"url":"https://github.com/rustlanges/design-system-components","last_synced_at":"2025-07-22T17:06:12.081Z","repository":{"id":298975236,"uuid":"993882434","full_name":"RustLangES/design-system-components","owner":"RustLangES","description":"The brand design system for RustLangES","archived":false,"fork":false,"pushed_at":"2025-07-16T04:06:17.000Z","size":1023,"stargazers_count":6,"open_issues_count":84,"forks_count":6,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-17T05:41:02.698Z","etag":null,"topics":["design-system","leptos","react","rust"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/RustLangES.png","metadata":{"files":{"readme":"README.EN.md","changelog":null,"contributing":"CONTRIBUTING.EN.md","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":"2025-05-31T18:15:36.000Z","updated_at":"2025-07-17T04:22:36.000Z","dependencies_parsed_at":"2025-07-01T22:24:24.135Z","dependency_job_id":"829fff6c-ce94-452a-95f7-cbdf6526d00d","html_url":"https://github.com/RustLangES/design-system-components","commit_stats":null,"previous_names":["rustlanges/design-system-components"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RustLangES/design-system-components","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RustLangES%2Fdesign-system-components","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RustLangES%2Fdesign-system-components/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RustLangES%2Fdesign-system-components/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RustLangES%2Fdesign-system-components/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RustLangES","download_url":"https://codeload.github.com/RustLangES/design-system-components/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RustLangES%2Fdesign-system-components/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266535695,"owners_count":23944275,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"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":["design-system","leptos","react","rust"],"created_at":"2025-07-22T17:06:10.951Z","updated_at":"2025-07-22T17:06:12.067Z","avatar_url":"https://github.com/RustLangES.png","language":"TypeScript","readme":"\u003cdiv align=\"right\"\u003e\n    \u003ca href=\"./README.ES.md\"\u003e :es: ES \u003c/a\u003e\n\u003c/div\u003e\n\n\u003cimg src=\"./.github/banner.png\" width=\"100%\" alt=\"RustLangES Design System\"\u003e\n\n## :rocket: Introduction\n\nThe RustLangES Design System serves as the single source of truth for UI components across Spanish Rust community projects. It provides accessible, consistent, and high-quality components for multiple technologies.\n\n## :package: Installation\n\n```bash\n# For React projects\npnpm add @rustlanges/react\n\n# For Leptos projects (Rust)\ncargo add rustlanges-leptos\n```\n\n## :sparkles: Key Features\n\n- **Multi-framework**: Support for React, Leptos, and more\n- **Light/dark mode**: Automatic system theme compatibility\n- **Accessibility**: WCAG 2.1 AA compliant components\n- **Design system**: Based on [Figma](https://www.figma.com/design/S9yCZSaZ9q54XSojWNhJft/Rust-Lang-ES)\n\n## :building_construction: Project Structure\n\n```\n.\n├── crates/          # Rust components\n└── js/              # JavaScript components\n```\n\n## :art: Component Usage\n\n### React\n```tsx\nimport { Button, TelegramIcon } from \"@rustlanges/react\";\n\nfunction App() {\n  return (\n    \u003cButton \n      variant=\"primary\"\n      icon={\u003cTelegramIcon /\u003e}\n      label=\"Send\"\n    /\u003e\n  );\n}\n```\n\n### Leptos\n```rust\nuse rustlanges_leptos::components::Button;\n\nview! {\n    \u003cButton variant=ButtonVariant::Primary\u003e\n        \"Hello Rust!\"\n    \u003c/Button\u003e\n}\n```\n\n## :paintbrush: Design System\n\nAll components follow specifications from our [official Figma](https://www.figma.com/design/S9yCZSaZ9q54XSojWNhJft/Rust-Lang-ES):\n\n- :triangular_ruler: [Design Guidelines](https://www.figma.com/file/S9yCZSaZ9q54XSojWNhJft/Rust-Lang-ES?node-id=0%3A1)\n- :art: [Color Palette](https://www.figma.com/file/S9yCZSaZ9q54XSojWNhJft/Rust-Lang-ES?node-id=1%3A2)\n- :pencil2: [Iconography](https://www.figma.com/file/S9yCZSaZ9q54XSojWNhJft/Rust-Lang-ES?node-id=24-117)\n\n## :hammer_and_wrench: Development\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/RustLangES/design-system-components.git\ncd design-system-components\n```\n\n2. Install dependencies:\n```bash\npnpm install\n```\n\n3. Start the development environment:\n```bash\npnpm run dev\n```\n\n## :handshake: Contributing\n\nFollow our [contribution guide](CONTRIBUTING.EN.md) to:\n- :new: Add new components\n- :bug: Report issues\n- :sparkles: Suggest improvements\n\n**Important**: All components must:\n1. Follow Figma specifications\n2. Pass accessibility tests\n3. Include documentation\n\n## :page_facing_up: License\n\nThis project is licensed under the **MIT License** - see the [LICENSE](./LICENSE) file for details.\n\n---\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"./.github/RustLangES_Logo-dark.png#gh-dark-mode-only\" width=\"200\" alt=\"RustLangES logo\"\u003e\n  \u003cimg src=\"./.github/RustLangES_Logo.png#gh-light-mode-only\" width=\"200\" alt=\"RustLangES logo\"\u003e\n  \u003cp\u003ePart of the RustLangES ecosystem\u003c/p\u003e\n\u003c/div\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frustlanges%2Fdesign-system-components","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frustlanges%2Fdesign-system-components","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frustlanges%2Fdesign-system-components/lists"}