Big news!Introducing Socket AI - ChatGPT-Powered Threat Analysis. Learn more
Socket
Log inDemoInstall

@teamleader/ui-icons

Package Overview
Dependencies
0
Maintainers
12
Versions
66
Issues
File Explorer

Advanced tools

@teamleader/ui-icons

Teamleader UI icons

    2.4.0latest
    GitHub

Version published
Maintainers
12
Weekly downloads
2,483
increased by33.42%

Weekly downloads

Changelog

Source

[2.4.0] 2023-03-13

Added

  • 14x14_euro_outline.svg

Readme

Source

Teamleader UI Icons

Interface icons used in the Teamleader application(s), both as SVG and matching React-based implementation.

Installation

Teamleader's icons package is available on npm.

$ npm install --save @teamleader/ui-icons

or

$ yarn install @teamleader/ui-icons

If you're already using teamleader-ui in your application, you can access the icons using the sub-repo notation '@teamleader-ui/icons'.

Usage

import React from 'react'; import { render } from 'react-dom'; import { Button } from '@teamleader/ui'; import { IconWarningMediumFilled } from '@teamleader/ui-icons'; const App = () => { return ( <Button> <IconWarningMediumFilled /> Delete this item </Button> ); } render(<App />, document.querySelector('#app'));

Development

Prerequisites

  • node ^12.0.0
  • npm ^6.9.0

Getting started

Clone this repo

$ git clone https://github.com/teamleadercrm/ui-icons.git

Add your newly designed SVG files to the /icons folder. Make sure they are named properly using the dimensions_name_variant.svg syntax, eg: 14x14_meeting_outline.svg or 24x24_building_filled.svg.

Don't forget to transform your newly added SVGs to React components by running

$ npm run build

How to make a release

  1. Pull the master branch to make sure you have all the latest code on your local machine.

  2. Make a new branch, starting from master and give it the name of the next version you want to release (release/new.version.number).

  3. Bump the version in package.json and commit with message Version bump and push.

  4. Update CHANGELOG.md

    • Replace [unreleased] with the [new.version.number] and add the release date next to it, like this- yyyy-mm-dd`.

    • Clean up the unused titles.

    • Prepare for next release by adding the following content on top of the file:

      ## [unreleased] ### Added ### Changed ### Deprecated ### Removed ### Fixed
    • Commit with message Update changelog and push.

  5. Make a pull request on Github where you add the changelog items as the description and wait for approval.

  6. Make a draft release on Github and fill in the following fields:

    • Tag version: new.version.number @ target: master
    • Release title: new.version.number
    • Description: add the changelog items
  7. Once the pull request has the needed amount of approvals, merge it into the master branch.

  8. Publish the earlier created draft release on Github.

  9. In your console, pull the master branch.

  10. Publish to npm using the npm publish --access=public command.

Keywords

FAQs

Last updated on 13 Mar 2023

Did you know?

Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.

Install Socket
Socket
support@socket.devSocket SOC 2 Logo

Product

  • Package Issues
  • 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