import React from 'react'; import classNames from 'classnames'; interface Props { tag: string; size?: 'small' | 'medium' | 'large'; classes?: string; } export function TagBlock(props: Props) { const { tag, size = 'small', classes } = props; const href = `/tag/${tag}`; return ( {tag} ); }