Package Exports
- @responsive-ui/button
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@responsive-ui/button) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@responsive-ui/button
A button component of responsive-ui.
Install
npm install @responsive-ui/buttonor
yarn add @responsive-ui/buttonProperties
type ButtonProps = {
title?: string; // button title
name?: string; // button name
type: "button" | "submit" | "reset" = "button"; // button type
class? string; // custom class for button
disabled?: boolean; // disabled the button
form?: string;
style?: string;
};Usage
<script>
import Button from '@responsive-ui/button';
const onClick = () => {
console.log("clicked!");
}
</script>
<Button title="Click me" on:click={onClick}></Button>Sponsors
License
@responsive-ui/button is 100% free and open-source, under the MIT license.
Big Thanks To
Thanks to these awesome companies for their support of Open Source developers ❤