---
layout: example.11ty.cjs
title: <plutonium-account-panel> ⌲ Examples ⌲ Basic
tags: example
name: Basic
description: A basic example
---

<style>
  plutonium-account-panel p {
    border: solid 1px blue;
    padding: 8px;
  }
</style>
<plutonium-account-panel>
  <p>This is child content</p>
</plutonium-account-panel>

<h3>CSS</h3>

```css
  p {
    border: solid 1px blue;
    padding: 8px;
  }
```

<h3>HTML</h3>

```html
<plutonium-account-panel>
  <p>This is child content</p>
</plutonium-account-panel>
```
