{"id":19773090,"url":"https://github.com/maxicorrea/mx-button","last_synced_at":"2025-09-01T09:34:51.463Z","repository":{"id":91914965,"uuid":"563121198","full_name":"MaxiCorrea/mx-button","owner":"MaxiCorrea","description":"Material UI v4 Button Component","archived":false,"fork":false,"pushed_at":"2024-02-12T05:58:28.000Z","size":1060,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-20T01:03:49.978Z","etag":null,"topics":["chromatic","material-ui","react","react-button","react-component-library","storybook","typescript"],"latest_commit_sha":null,"homepage":"https://www.chromatic.com/library?appId=65bd5700dd3e3890ea1ae4ce","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MaxiCorrea.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2022-11-08T00:18:40.000Z","updated_at":"2024-02-12T04:53:31.000Z","dependencies_parsed_at":"2024-02-02T22:24:15.465Z","dependency_job_id":"e98ad440-3ce5-4ad2-878f-811904422c9f","html_url":"https://github.com/MaxiCorrea/mx-button","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MaxiCorrea/mx-button","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaxiCorrea%2Fmx-button","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaxiCorrea%2Fmx-button/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaxiCorrea%2Fmx-button/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaxiCorrea%2Fmx-button/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MaxiCorrea","download_url":"https://codeload.github.com/MaxiCorrea/mx-button/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaxiCorrea%2Fmx-button/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273100336,"owners_count":25045697,"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-09-01T02:00:09.058Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","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":["chromatic","material-ui","react","react-button","react-component-library","storybook","typescript"],"created_at":"2024-11-12T05:08:35.440Z","updated_at":"2025-09-01T09:34:51.438Z","avatar_url":"https://github.com/MaxiCorrea.png","language":"TypeScript","readme":"# mx-button\n\n\u003e React MxButton Component\n\n[![NPM](https://img.shields.io/npm/v/mx-button.svg)](https://www.npmjs.com/package/mx-button) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)\n\n## Install\n\n```bash\nnpm install --save mx-button\n```\n\n## Usage\n\n```tsx\nimport * as React from 'react'\nimport { MxButton } from 'mx-button'\n\nconst App = () =\u003e {\n  return (\n    \u003cdiv style={{ display: 'flex', margin: '20px', flexDirection: 'column' }}\u003e\n      \u003cdiv\n        style={{\n          display: 'flex',\n          justifyContent: 'center',\n          alignItems: 'center' \n        }}\n      \u003e\n        \u003cspan style={{width : \"100px\"}}\u003ePrimary\u003c/span\u003e\n        \u003cMxButton label={'Button'} variant='primary' size='small'/\u003e\n        \u003cMxButton label={'Button'} variant='primary' size='medium'/\u003e\n        \u003cMxButton label={'Button'} variant='primary' size='large'/\u003e\n      \u003c/div\u003e\n\n      \u003cdiv\n        style={{\n          display: 'flex',\n          justifyContent: 'center',\n          alignItems: 'center'\n        }}\n      \u003e\n        \u003cspan style={{width : \"100px\"}}\u003eSecundary\u003c/span\u003e\n        \u003cMxButton label={'Button'} variant='secondary' size='small'/\u003e\n        \u003cMxButton label={'Button'} variant='secondary' size='medium'/\u003e\n        \u003cMxButton label={'Button'} variant='secondary' size='large'/\u003e\n      \u003c/div\u003e\n\n      \u003cdiv\n        style={{\n          display: 'flex',\n          justifyContent: 'center',\n          alignItems: 'center'\n        }}\n      \u003e\n        \u003cspan style={{width : \"100px\"}}\u003eOutlined\u003c/span\u003e\n        \u003cMxButton label={'Mx Button small'} variant='outlined' size='small'/\u003e\n        \u003cMxButton label={'Mx Button medium'} variant='outlined' size='medium'/\u003e\n        \u003cMxButton label={'Mx Button large'} variant='outlined' size='large'/\u003e\n      \u003c/div\u003e\n\n      \u003cdiv\n        style={{\n          display: 'flex',\n          justifyContent: 'center',\n          alignItems: 'center'\n        }}\n      \u003e\n        \u003cspan style={{width : \"100px\"}}\u003eText\u003c/span\u003e\n        \u003cMxButton label={'Mx Button small'} variant='text' size='small'/\u003e\n        \u003cMxButton label={'Mx Button medium'} variant='text' size='medium'/\u003e\n        \u003cMxButton label={'Mx Button large'} variant='text' size='large'/\u003e\n      \u003c/div\u003e\n\n      \u003cdiv\n        style={{\n          display: 'flex',\n          justifyContent: 'center',\n          alignItems: 'center'\n        }}\n      \u003e\n        \u003cspan style={{width : \"100px\"}}\u003eRounded\u003c/span\u003e\n        \u003cMxButton label={'Mx Button small'} variant='rounded' size='small'/\u003e\n        \u003cMxButton label={'Mx Button medium'} variant='rounded' size='medium'/\u003e\n        \u003cMxButton label={'Mx Button large'} variant='rounded' size='large'/\u003e\n      \u003c/div\u003e\n\n      \u003cdiv\n        style={{\n          display: 'flex',\n          justifyContent: 'center',\n          alignItems: 'center'\n        }}\n      \u003e\n        \u003cspan style={{width : \"100px\"}}\u003eSquare\u003c/span\u003e\n        \u003cMxButton label={'Mx Button small'} variant='square' size='small'/\u003e\n        \u003cMxButton label={'Mx Button medium'} variant='square' size='medium'/\u003e\n        \u003cMxButton label={'Mx Button large'} variant='square' size='large'/\u003e\n      \u003c/div\u003e\n    \u003c/div\u003e\n  )\n}\n\nexport default App\n```\n\n## License\n\nMIT © [MaxiCorrea](https://github.com/MaxiCorrea)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxicorrea%2Fmx-button","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxicorrea%2Fmx-button","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxicorrea%2Fmx-button/lists"}