Skip to content
Snippets Groups Projects
Commit aa925a0c authored by Julia Friesel's avatar Julia Friesel
Browse files

Pass active state to icon

parent 662858bd
No related branches found
No related tags found
No related merge requests found
......@@ -82,9 +82,7 @@ export default class CycleDayOverView extends Component {
data={getLabel('mucus', cycleDay.mucus)}
disabled={dateInFuture}
>
<Svg width={100} height={50} viewBox='0 0 450 450'>
<MucusIcon />
</Svg>
<MucusIcon viewBox='0 0 450 450' />
</SymptomBox>
<SymptomBox
title='Cervix'
......@@ -238,7 +236,13 @@ class SymptomBox extends Component {
<View style={[styles.symptomBox, boxActive, disabledStyle]}>
{this.props.children ?
React.cloneElement(this.props.children, {active: true})
React.Children.map(this.props.children, child => {
return (
<Svg width={100} height={50} viewBox={child.props.viewBox}>
{React.cloneElement(child, { active: !!d })}
</Svg>
)
})
: null
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment