BaseContentBlock
template(v-slot:top)
//@slot contains `stat` element
slot(name="top")
.lead.mb-3(v-html="stat", v-if="stat")
template(v-slot:default)
//@slot contains `content` element
slot
.small.my-3(v-html="content", v-if="content")
template(v-slot:bottom)
//@slot contains `link` element
slot(name="bottom")
Button(
tag="a"
:href="link"
isTextOnly
v-if="!!link"
)
|Learn More
template(v-slot:right)
//@slot right hand side section (e.g. for media, etc)
slot(name="right")
```jsx
import Icon from '@/components/Icon'
42,000+
This uses slot.
```