mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-17 03:01:25 +00:00
refactor: update/fix JSDoc props
This commit is contained in:
parent
3c04f122b0
commit
d38e6d8be6
204 changed files with 992 additions and 2359 deletions
|
@ -1,19 +1,13 @@
|
|||
<script>
|
||||
/**
|
||||
* Set to `true` to click the tile
|
||||
* @type {boolean} [clicked=false]
|
||||
*/
|
||||
/** Set to `true` to click the tile */
|
||||
export let clicked = false;
|
||||
|
||||
/**
|
||||
* Set to `true` to enable the light variant
|
||||
* @type {boolean} [light=false]
|
||||
*/
|
||||
/** Set to `true` to enable the light variant */
|
||||
export let light = false;
|
||||
|
||||
/**
|
||||
* Set the `href`
|
||||
* @type {string} [href]
|
||||
* @type {string}
|
||||
*/
|
||||
export let href = undefined;
|
||||
</script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue