You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
---
|
|
type Props = {
|
|
colors: string[]
|
|
}
|
|
|
|
const { colors } = Astro.props
|
|
---
|
|
|
|
<div class="palette">
|
|
{
|
|
colors.map(value => (
|
|
<>
|
|
<div class="color">
|
|
<div class="region" style={{ backgroundColor: value }} />
|
|
</div>
|
|
<div class="label">{value}</div>
|
|
</>
|
|
))
|
|
}
|
|
</div>
|