chore(components): No icon for fixme style blockquote
This commit is contained in:
parent
707a4796e9
commit
590ee5ed4d
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ const Blockquote = props => {
|
||||||
return (
|
return (
|
||||||
<blockquote className={props.type} {...attr}>
|
<blockquote className={props.type} {...attr}>
|
||||||
{props.children}
|
{props.children}
|
||||||
<Icon icon={props.type} className={'icon ' + props.type} />
|
{props.type === 'fixme' ? null : <Icon icon={props.type} className={'icon ' + props.type} />}
|
||||||
</blockquote>
|
</blockquote>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue