diff --git a/src/theme/TagsListInline/index.tsx b/src/theme/TagsListInline/index.tsx new file mode 100644 index 00000000..938611d9 --- /dev/null +++ b/src/theme/TagsListInline/index.tsx @@ -0,0 +1,28 @@ +import React from 'react'; +import clsx from 'clsx'; +import Translate from '@docusaurus/Translate'; +import Tag from '@theme/Tag'; +import type {Props} from '@theme/TagsListInline'; + +import styles from './styles.module.css'; + +export default function TagsListInline({tags}: Props): JSX.Element { + return ( + <> + {/* + + Tags: + + + */} + + ); +} diff --git a/src/theme/TagsListInline/styles.module.css b/src/theme/TagsListInline/styles.module.css new file mode 100644 index 00000000..3119dc7d --- /dev/null +++ b/src/theme/TagsListInline/styles.module.css @@ -0,0 +1,8 @@ +.tags { + display: inline; +} + +.tag { + margin: 0 0.4rem 0.5rem 0; + display: inline-block; +}