1
0
Fork 0

Updates to components

This commit is contained in:
Joost De Cock 2019-06-23 18:00:50 +02:00
parent 7a97fafecc
commit 59788e410c
7 changed files with 30 additions and 30 deletions

View file

@ -12,6 +12,7 @@ const Draft = props => (
language={props.settings.locale}
id={props.settings.idPrefix + "svg"}
design={props.design}
style={props.style}
>
<Defs
units={props.settings.units}
@ -45,7 +46,8 @@ Draft.propTypes = {
Draft.defaultProps = {
design: false,
focus: false
focus: false,
style: {}
};
export default Draft;