mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
8 lines
241 B
JavaScript
8 lines
241 B
JavaScript
|
import React from 'react';
|
||
|
import classNames from 'classnames';
|
||
|
import styles from './Tag.module.css';
|
||
|
|
||
|
export default function Tag({ className, children }) {
|
||
|
return <span className={classNames(styles.tag, className)}>{children}</span>;
|
||
|
}
|