mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-18 21:35:27 -04:00
16 lines
370 B
TypeScript
16 lines
370 B
TypeScript
import React from 'react';
|
|
import styles from './DescriptionList.css';
|
|
|
|
interface DescriptionListProps {
|
|
className?: string;
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
function DescriptionList(props: DescriptionListProps) {
|
|
const { className = styles.descriptionList, children } = props;
|
|
|
|
return <dl className={className}>{children}</dl>;
|
|
}
|
|
|
|
export default DescriptionList;
|