mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-20 12:23:02 +00:00
breaking: remove border prop from StructuredListSkeleton [ci skip]
This commit is contained in:
parent
ce4cacd10a
commit
59c1126c26
1 changed files with 0 additions and 4 deletions
|
@ -1,16 +1,12 @@
|
||||||
<script>
|
<script>
|
||||||
/** Specify the number of rows */
|
/** Specify the number of rows */
|
||||||
export let rows = 5;
|
export let rows = 5;
|
||||||
|
|
||||||
/** Set to `true` to use the bordered variant */
|
|
||||||
export let border = false;
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<!-- svelte-ignore a11y-mouse-events-have-key-events -->
|
<!-- svelte-ignore a11y-mouse-events-have-key-events -->
|
||||||
<div
|
<div
|
||||||
class:bx--skeleton="{true}"
|
class:bx--skeleton="{true}"
|
||||||
class:bx--structured-list="{true}"
|
class:bx--structured-list="{true}"
|
||||||
class:bx--structured-list--border="{border}"
|
|
||||||
{...$$restProps}
|
{...$$restProps}
|
||||||
on:click
|
on:click
|
||||||
on:mouseover
|
on:mouseover
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue