Пробелы между тегами
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 => {
|
export const Tag = (props: Props): JSX.Element => {
|
||||||
const inlineStyle = getStyleObjectFromString(props.style || '');
|
const inlineStyle = getStyleObjectFromString(props.style || '');
|
||||||
return (
|
return (
|
||||||
|
<>
|
||||||
|
<span> </span>
|
||||||
<span className={Css.tag} style={inlineStyle}>
|
<span className={Css.tag} style={inlineStyle}>
|
||||||
{props.tag}
|
{props.tag}
|
||||||
</span>
|
</span>
|
||||||
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Loading…
Reference in a new issue