How to use the linaria.styles function in linaria

To help you get started, we’ve selected a few linaria examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github s-panferov / tygen / packages / docscript-react / src / type / type-parameter.tsx View on Github external
render() {
		const { reflection } = this.props
		return <span>{reflection.name}</span>
	}
}
github s-panferov / tygen / packages / docscript-react / src / type / tuple.tsx View on Github external
render() {
		const { reflection } = this.props
		return (
			<span>
				[
				 <span>, </span>}&gt;
					{reflection.types.map((ty, i) =&gt; (
						
					))}
				
				]
			</span>
		)
	}
}
github s-panferov / tygen / packages / docscript-react / src / type / this.tsx View on Github external
render() {
		const { reflection } = this.props
		return (
			<span>
				{reflection.base ?  : 'this'}
			</span>
		)
	}
}
github s-panferov / tygen / packages / docscript-react / src / type / type-reference.tsx View on Github external
render() {
		const { reflection } = this.props
		return (
			<span>
				
				{reflection.typeArguments &amp;&amp; }
			</span>
		)
	}
}