Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
@clearchannel/iris
Advanced tools
A Clear Channel Outdoor display component library
Access our Storybook to preview Iris components, design tokens and documentation
https://clearchanneloutdoor.github.io/iris/
Install the Iris package:
npm install @clearchannel/iris
Use the CCOThemeProvider
where required:
/* pages/_app.jsx */
import { CCOThemeProvider } from '@clearchannel/iris'
const NextApp = ({ Component, pageProps }) => (
<CCOThemeProvider>
<Component {...pageProps} />
</CCOThemeProvider>
)
export default NextApp
To utilize Iris components or design tokens, the import shortcut is denoted by @clearchannel/iris
:
Note: Our recommendations for styling components include techniques such as styled()
or the sx
prop. However, there are other options in MUI 5 that are available for customization: https://mui.com/customization/how-to-customize/
/* pages/index.jsx */
import { Button, palette } from '@clearchannel/iris'
const Index = () => (
<Button
style={{
color: palette['brand-background'],
}}
>
Click Me
</Button>
)
export default Index
FAQs
Iris Component Library
The npm package @clearchannel/iris receives a total of 338 weekly downloads. As such, @clearchannel/iris popularity was classified as not popular.
We found that @clearchannel/iris demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.