I have the following component:
export const Checkmark = props => (
  <Layout {...props}>
    { 
      if(props.checked){
        <Icon name="checkmarkBlue" small />
      } 
    }
  </Layout>
)
my linting is complaining about the "if" saying (unexpected token)

 
     
    