Skip to content

Latest commit

 

History

History

Tile

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Tile

UIKit documentation

Storybook

Usage

Props

name type description see also
style enum Background / Text color Module context of Tile.svelte
width enum Width of the tile helpers/width.js

Slots

name type inside description
default any root element (div) Content of the tile

Real Example

Note that all props are default values

<script>
    import {Tile} from 'svelte-uikit3';
</script>

<Tile style={""} width={""}>
    <h3>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</h3>
</Tile>