mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
8 lines
220 B
JavaScript
8 lines
220 B
JavaScript
import classNames from 'classnames';
|
|
import styles from './Tag.module.css';
|
|
|
|
function Tag({ className, children }) {
|
|
return <span className={classNames(styles.tag, className)}>{children}</span>;
|
|
}
|
|
|
|
export default Tag;
|