




<!doctype html>
<html lang="en" class="scheme-light-dark">
<head>
<title></title>
</head>
<body class="bg-canvas">
<div class="grid grid-cols-2 gap-static-md">
<p-button-tile aspect-ratio="4/3" label="Some Label" description="Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum." size="large">
<p-tag slot="header" color="background-frosted" compact="true">
4/3
</p-tag>
<img src="assets/lights.jpg" alt="Some image description" />
</p-button-tile>
<p-button-tile aspect-ratio="4/3" label="Some Label" description="Some description">
<p-tag slot="header" color="background-frosted" compact="true">
4/3
</p-tag>
<img src="assets/lights.jpg" alt="Some image description" />
</p-button-tile>
<p-button-tile aspect-ratio="1/1" label="Some Label" description="Some description">
<p-tag slot="header" color="background-frosted" compact="true">
1/1
</p-tag>
<img src="assets/lights.jpg" alt="Some image description" />
</p-button-tile>
<p-button-tile aspect-ratio="9/16" label="Some Label" description="Some description">
<p-tag slot="header" color="background-frosted" compact="true">
9/16
</p-tag>
<img src="assets/lights.jpg" alt="Some image description" />
</p-button-tile>
<p-button-tile aspect-ratio="1/1" label="Some Label" description="Some description">
<p-tag slot="header" color="background-frosted" compact="true">
1/1
</p-tag>
<img src="assets/lights.jpg" alt="Some image description" />
</p-button-tile>
</div>
<script>
</script>
</body>
</html>
<!doctype html>
<html lang="en" class="scheme-light-dark">
<head>
<title></title>
</head>
<body class="bg-canvas">
<p-select label="Select hyphens" name="hyphens">
<p-select-option value="auto">style="hyphens: auto;"</p-select-option>
<p-select-option value="manual">style="hyphens: manual;"</p-select-option>
<p-select-option value="none">style="hyphens: none;"</p-select-option>
</p-select>
<p-button-tile
label="Some label"
description="An extra­ordinarily Porsche"
compact="true"
size="inherit"
style="max-width: 400px; font-size: 45px;"
>
<img src="assets/lights.jpg" alt="Some image description" />
</p-button-tile>
<script>
const select = document.querySelector('p-select');
select.addEventListener('update', (event) => {
const buttonTile = document.querySelector('p-button-tile');
buttonTile.style.hyphens = event.detail.value;
});
</script>
</body>
</html>footer slot to display additional text below the description, providing more flexibility for custom
content. The footer slot is intended for non-interactive content only, meaning it should not contain links, buttons,
or other interactive elements. It is designed to handle plain text, making it ideal for supplementary or secondary
information.

<!doctype html>
<html lang="en" class="scheme-light-dark">
<head>
<title></title>
</head>
<body class="bg-canvas">
<div class="grid grid-cols-2 gap-static-md">
<p-button-tile label="Some label" description="Some Description">
<p-tag slot="header" color="background-frosted" compact="true">
Some tag
</p-tag>
<img src="assets/lights.jpg" alt="Some image description" />
<p-text slot="footer">
Some footer text
</p-text>
</p-button-tile>
<p-button-tile label="Some label" description="Some Description" compact="true">
<p-tag slot="header" color="background-frosted" compact="true">
Some tag
</p-tag>
<img src="assets/lights.jpg" alt="Some image description" />
<p-text slot="footer">
Some footer text
</p-text>
</p-button-tile>
</div>
<script>
</script>
</body>
</html>