13 lines
329 B
Text
13 lines
329 B
Text
---
|
|
import Description from '@/components/description.astro';
|
|
import { variantToClassName } from './typography.astro';
|
|
|
|
export interface Props {
|
|
content: string;
|
|
class?: string;
|
|
}
|
|
|
|
const { content, class: className } = Astro.props;
|
|
---
|
|
|
|
<Description content={content} classList={[variantToClassName.paragraph, className]} />
|