You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
696 B
33 lines
696 B
2 years ago
|
<script>
|
||
|
import Icon from '$/client/components/Icon.svelte';
|
||
|
</script>
|
||
|
<style>
|
||
|
content {
|
||
|
display: flex;
|
||
|
flex: flex-shrink;
|
||
|
flex-grow: 1;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<content>
|
||
|
<tile>
|
||
|
<left>
|
||
|
<Icon name="user" size="48" />
|
||
|
</left>
|
||
|
|
||
|
<middle>
|
||
|
<h4>
|
||
|
Tile Example
|
||
|
</h4>
|
||
|
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
|
||
|
</middle>
|
||
|
|
||
|
<right>
|
||
|
<button><Icon name="check-circle" color="var(--color-bg)" size="24" /></button>
|
||
|
<button><Icon name="x-circle" color="var(--color-bg)" size="24"/></button>
|
||
|
</right>
|
||
|
</tile>
|
||
|
</content>
|
||
|
|