mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +01: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;
|