Removed Tag component.

This commit is contained in:
Mike Cao 2023-03-31 22:01:36 -07:00
parent 17601c4dea
commit 57c3d03cc8
4 changed files with 21 additions and 20 deletions

View file

@ -1,8 +0,0 @@
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;

View file

@ -1,7 +0,0 @@
.tag {
padding: 4px 6px;
border-radius: 4px;
margin-right: 10px;
color: var(--primary400);
background: var(--blue100);
}