2025-10-13 14:57:11 +02:00
|
|
|
import classNames from "classnames";
|
|
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
className?: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const Description = ({ children, className }: Props) => {
|
2025-10-13 17:39:00 +02:00
|
|
|
const style = classNames("italic text-base",
|
2025-10-13 14:57:11 +02:00
|
|
|
className
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
return <p className={style}>{ children }</p>
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default Description
|