@linguala/ui-icons
v3.0.1
Published
Icon library for Linguala
Downloads
39
Readme
Linguala UI Icons ✨
An always growing library of react component icons. Check them out!
Icons come with some theme-aware style props and are styled-components.
Example
import React from 'react'
import { LingualaLogo } from '@linguala/ui-icons'
import { ThemeProvider } from 'styled-components'
const theme = {
colors: {
primary: green
}
}
const MyApp = () => (
<ThemeProvider theme={theme}>
<LingualaLogo
background={'colors.primary'} // background: green;
boxShadow={'0 0 5px gray'} // boxShadow: 0 0 5px gray;
color={'blue'} // color: blue;
height={130} // height: 130px;
width={130} // width: 130px;
/>
<h1>Welcome to my app.</p>
<ThemeProvider/>
)
Developers read USAGE.md.