Socket
Socket
Sign inDemoInstall

postcss-icon

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-icon

PostCSS plugin which allows you to quickly add styles to css icons


Version published
Weekly downloads
12
increased by100%
Maintainers
1
Weekly downloads
 
Created
Source

postcss-icon

postcss-icon

npm AppVeyor Travis David

PostCSS plugin that adds css icons from Icon sets

Now you do not need to connect the entire style library for css icons.

Ison sets:

Install for postcss

# the plugin
npm install --save-dev postcss-icon

# and the icon set you need
npm install --save-dev postcss-icon.cssicon postcss-icon.icono postcss-icon.rosa
npm install --save-dev postcss-icon.airpwn postcss-icon.stiffi postcss-icon.joshnh

Input:

.icon.bad-name{
	@icon: 404-not-found-name;
}

.icon{
	color: gold;
	@icon: prefix-name;
}

Output:

.icon.bad-name{
	/* @icon: 404-not-found-name */
}

.icon::after{
	content: '';
	/* ... */
}
/* after  before  i  span */
.icon{
	color: #000;
	width: 20px;
	heigth: 20px;
	/* ... */
	color: gold;
}

Usage

const postcss     = require('postcss');
const postcssIcon = require('postcss-icon');

// postcss(require('postcss-icon')(iconSetDataList))
// exemple all icon Set
postcss(
	postcssIcon(
		{ prefix: 'cssicon-',	data: require('postcss-icon.cssicon') },
		{ prefix: 'icono-',	data: require('postcss-icon.icono') },
		{ prefix: 'rose-',	data: require('postcss-icon.rosa') },
		{ prefix: 'airpwn-',	data: require('postcss-icon.airpwn') },
		{ prefix: 'stiffi-',	data: require('postcss-icon.stiffi') },
		{ prefix: 'joshnh-',	data: require('postcss-icon.joshnh') }
	)
);

// example custom data set
postcss([
	postcssIcon({
		prefix: "custom-",
		data: {
			iconName: [
				".extend {color: gold; /* ... all styles */}",
				".extend::after, .extend::before {position: absolute; /* ... all styles */}",
				".extend i, {color: gold; /* all styles */}"
			],
			pen: [".extend { /* ... */}" /* , ... */]
		}
	})
]);

Work algorithm

Work algorithm

Keywords

FAQs

Package last updated on 08 Jan 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc