@responsive-ui/button
A button component of responsive-ui.
Install
npm install @responsive-ui/button
or
yarn add @responsive-ui/button
Look and Feel
Properties, Events & Slots
interface ButtonProps {
title?: string;
name?: string;
type?: "button" | "submit" | "reset";
class?: string;
disabled?: boolean;
form?: string;
style?: string;
}
interface ButtonEvents {
click?: any;
}
interface ButtonSlots {
default: {};
}
declare class Button extends SvelteComponentTyped<
ButtonProps,
ButtonEvents,
ButtonSlots
> {}
Example
<script>
import Button from '@responsive-ui/button';
const onClick = () => {
console.log("clicked!");
}
</script>
<Button title="Click me" on:click={onClick}></Button>
Try it yourself in Svelte Repl
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 ❤