-
-
Notifications
You must be signed in to change notification settings - Fork 285
/
_ThreeLine.svelte
37 lines (36 loc) · 1.2 KB
/
_ThreeLine.svelte
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<div>
<List threeLine nonInteractive>
<Item>
<Text>
<PrimaryText>FruitPhone Pro</PrimaryText>
<SecondaryText>$1,000</SecondaryText>
<SecondaryText>A beautiful phone with good specs.</SecondaryText>
</Text>
</Item>
<Item>
<Text>
<PrimaryText>Robot Phone Max</PrimaryText>
<SecondaryText>$700</SecondaryText>
<SecondaryText
title="Pretty much the same phone, but a different brand name and OS. It spies on you more, too."
>Pretty much the same phone, but a different brand name and OS. It
spies on you more, too.</SecondaryText
>
</Text>
</Item>
<Item>
<Text>
<PrimaryText>Penguin Phone</PrimaryText>
<SecondaryText>$220</SecondaryText>
<SecondaryText
title="A very weak phone that you can install literally anything on. Compile your own kernel, you nerd. :D"
>A very weak phone that you can install literally anything on. Compile
your own kernel, you nerd. :D</SecondaryText
>
</Text>
</Item>
</List>
</div>
<script lang="ts">
import List, { Item, Text, PrimaryText, SecondaryText } from '@smui/list';
</script>