Socket
Socket
Sign inDemoInstall

@conectate/ct-icon

Package Overview
Dependencies
7
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @conectate/ct-icon

HTML Material Design icon made with Web Components and Lit


Version published
Weekly downloads
15
increased by275%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

@conectate/ct-icon

Downloads per month NPM Version Contributors

This is an implementation to be able to use the Material Icons with web components

See: https://fonts.google.com/icons

Installation

To include this, type in terminal:

yarn add @conectate/ct-icon
# or
npm i @conectate/ct-icon

Example

<!-- See: https://fonts.google.com/icons for more icons -->
<ct-icon icon="settings"></ct-icon>
<!-- Or -->
<ct-icon-button icon="headphones"></ct-icon-button>

ES Modules

If you will use lit, react, vue, etc. need to import the web component.

LitElement example (Typescript)
import "@conectate/ct-icon";
import "@conectate/ct-icon-button";

// my-element.ts
import { LitElement, customElement, html } from "lit";

@customElement("my-element")
class MyElement extends LitElement {
	render() {
		return html`
			<ct-icon icon="print"></ct-icon>
			<ct-icon-button icon="headphones"></ct-icon-button>
		`;
	}
}
Change font style
import "@conectate/ct-icon";

import { CtIcon } from "@conectate/ct-icon";
// my-element.ts
import { LitElement, customElement, html } from "lit";

@customElement("my-element")
class MyElement extends LitElement {
	constructor() {
		// Select type
		CtIcon.FontStyle = "Sharp";
	}

	render() {
		return html`<style>
				/* Specify new font family */
				ct-icon {
					font-family: "Material Icons Sharp";
				}
			</style>

			<ct-icon icon="print"></ct-icon>`;
	}
}

VS Code intellisense support

The component has support to autocomplete the more than 1000 existing icons by Google Fonts Visual Sttudio Code intellisense support

Properties

PropertyAttributeTypeDefaultDescription
FontStylestatic type"Outlined"|"Fill"|"Sharp"|"Two Tone"|"Round""Round"Select Font Style with static propety - CtIcon.FontStyle = "Round"
iconiconiconIcon name described in Google Fonts
svgsvgstring""If the desired icon does not exist icon in Google Fonts, you can use an SVG by sending it as a string

Follow me

Herberth_thumb

https://twitter.com/herberthobregon

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -m 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

License

See LICENSE

FAQs

Last updated on 12 Sep 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc