fix(tile): add href prop

This commit is contained in:
josefaidt 2020-09-16 14:28:48 -05:00
commit 3131019999

View file

@ -10,6 +10,12 @@
* @type {boolean} [light=false] * @type {boolean} [light=false]
*/ */
export let light = false; export let light = false;
/**
* Set the `href`
* @type {string} [href]
*/
export let href = undefined;
</script> </script>
<!-- svelte-ignore a11y-missing-attribute --> <!-- svelte-ignore a11y-missing-attribute -->
@ -19,6 +25,7 @@
class:bx--tile--is-clicked="{clicked}" class:bx--tile--is-clicked="{clicked}"
class:bx--tile--light="{light}" class:bx--tile--light="{light}"
{...$$restProps} {...$$restProps}
href="{href}"
on:click on:click
on:click="{() => { on:click="{() => {
clicked = !clicked; clicked = !clicked;