etch icon indicating copy to clipboard operation
etch copied to clipboard

Add support for `false` as child

Open zaygraveyard opened this issue 6 years ago • 0 comments

This allows the following notation:

render() {
  const {on} = this.props;

  return <div>{on && 'Is on'}</div>;
}

Where on is a boolean

zaygraveyard avatar Jan 29 '18 16:01 zaygraveyard