Пробелы между тегами
This commit is contained in:
parent
410559c2e1
commit
8203561dd4
1 changed files with 6 additions and 3 deletions
|
|
@ -10,8 +10,11 @@ export type Props = {
|
|||
export const Tag = (props: Props): JSX.Element => {
|
||||
const inlineStyle = getStyleObjectFromString(props.style || '');
|
||||
return (
|
||||
<span className={Css.tag} style={inlineStyle}>
|
||||
{props.tag}
|
||||
</span>
|
||||
<>
|
||||
<span> </span>
|
||||
<span className={Css.tag} style={inlineStyle}>
|
||||
{props.tag}
|
||||
</span>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in a new issue