π’ Use this project, contribute to it or open issues to help evolve it using Store Discussion.
Store Icons are sets of icons tailored for store UI. The Store Icons are implemented using SVG fragment identifiers, which reference specific portions or elements within an SVG document. Leveraging SVG fragment identifiers makes it easier to link directly to and highlight particular sections or areas within the SVG document, facilitating navigation and interaction.
Render SDK serves all store icons, and with the HTML tag <use>
, you can render a fragment from the icon pack. For more information on the complete list of fragment SVG's, access the Icon Pack List.
- Store Icons
Add into the dependencies of your manifest.json
and use it as an npm
module:
"dependencies": {
"vtex.store-icons": "0.x"
}
There are two ways for using the available icons:
-
Developing a store's theme: Use the
icon
block to render the desired icon. This block functions similarly to other blocks and anticipates the receipt of props as specified by its associated API. -
Creating custom components: if you are creating custom components and wish to utilize the icons provided here, please follow the instructions below.
Import the desired icon and use it into your code, for example:
import { IconMenu } from 'vtex.store-icons'
const YourComponent = (props) => <IconMenu />
You can see here a list of every available icon.
The API provides a generic icon, The Icon
component. You can choose from any other icon passing only the id
from the respective one you want to add.
For example:
import { Icon } from 'vtex.store-icons'
const YourComponent = (props) => <Icon id="hpa-cart" />
dedicated
components whenever possible.
Any icon can receive the following props:
Property | Description | Type | Default value |
---|---|---|---|
id | The ID for the desired icon | String |
'' |
size | Desired size | Number |
16 |
isActive | desc | Boolean |
true |
activeClassName | The className it should have if active | String |
π« |
mutedClassName | The className it should have if not active | String |
π« |
Obs: ...props: It is important to notice that any other <svg>
prop passed will work with an icon as well.
Some components support modifiers. These are props that define the icon type, orientation, state or shape.
Modifier | Possible values |
---|---|
type | filled line outline |
orientation | up down left right |
state | on off |
shape | square rounded circle |
Component | id | Type | Orientation | State | Shape |
---|---|---|---|---|---|
IconSocial | social |
π« | π« | π« | square | rounded | circle |
Component | id | Type | Orientation | State | Shape |
---|---|---|---|---|---|
IconArrowBack | arrow-back |
π« | π« | π« | π« |
IconAssistantSales | assistant-sales |
π« | π« | π« | π« |
IconProfile | profile |
π« | π« | π« | π« |
IconCart | cart |
π« | π« | π« | π« |
IconSearch | search |
π« | π« | π« | π« |
IconDelete | delete |
π« | π« | π« | π« |
IconMenu | menu |
π« | π« | π« | π« |
IconLocationMarker | location-marker |
π« | π« | π« | π« |
Component | id | Type | Orientation | State | Shape |
---|---|---|---|---|---|
IconEyesight | eyesight |
filled | outline | π« | on | off | π« |
IconMinus | minus |
filled | outline | line | π« | π« brands | |
IconPlus | plus |
filled | outline | line | π« | π« | π« |
IconSingleItem | single-item |
π« | π« | π« | π« |
IconList | list |
π« | π« | π« | π« |
IconGallery | gallery |
π« | π« | π« | π« |
IconRemove | remove |
π« | π« | π« | π« |
IconSwap | swap |
π« | π« | π« | π« |
IconHeart | heart |
π« | π« | π« | π« |
IconGlobe | globe |
π« | π« | π« | π« |
IconBookmark | bookmark |
filled | outline | π« | π« | π« |
IconPlay | play |
filled | outline | π« | π« | π« |
IconPause | pause |
filled | outline | π« | π« | π« |
Component | id | Type | Orientation | State | Shape |
---|---|---|---|---|---|
IconCaret | caret |
π« | up | down | left | right | π« | π« |
Component | id | Type | Orientation | State | Shape |
---|---|---|---|---|---|
IconClose | close |
filled | outline | π« | π« | π« |
IconCheck | check |
filled | outline | line | π« | π« | π« |
IconVolumeOn | volume-on |
filled | outline | line | π« | π« | π« |
IconVolumeOff | volume-off |
filled | outline | line | π« | π« | π« |
In the usage section, we discuss two ways of using icons. These ways extend to customization, so, prefer to change an existing Icon so that you can use the dedicated version. You can check how to override and name icons below.
As mentioned before, all icon IDs are stored at the iconpack.svg file. You can overwrite the default one by:
-
On your
store-theme
create a new folder callediconpacks
-
Create a file called
iconpack.svg
-
Declare your icon IDs (use the default
iconpack
as an example in how to do that properly).
The naming convention is: intention
-id
--?modifiers
Where the modifiers
follows the rule:
?type
--?orientation
--?state
--?shape
π€ ? stands for optional inputs
bnd
Brand - Display logos, brands or advertisements.
hpa
High priority actions - Actions that are important to the global context.
mpa
Mild priority actions - Actions that are important only to the current component context.
inf
Informational - Represents information display or actions that, when triggered, reveal further details about the current context.
nav
Navigation - Actions that triggers navigation.
sti
Status indicators - Indicates the current item/component semantic status.
In order to apply CSS customizations in this and other blocks, follow the instructions given in the recipe on Using CSS Handles for store customization.
CSS Handles |
---|
'arrowBackIcon' |
'assistantSalesIcon' |
'caretIcon' |
'cartIcon' |
'checkIcon' |
'closeIcon' |
'deleteIcon' |
'equalsIcon' |
'eyeSightIcon' |
'filterIcon' |
'globeIcon' |
'gridIcon' |
'heartIcon' |
'homeIcon' |
'inlineGridIcon' |
'locationInputIcon' |
'locationMarkerIcon' |
'menuIcon' |
'minusIcon' |
'plusIcon' |
'profileIcon' |
'removeIcon' |
'searchIcon' |
'singleGridIcon' |
'socialIcon' |
'starIcon' |
'swapIcon' |
'playIcon' |
'pauseIcon' |
'fullscreenIcon' |
'volumeOnIcon' |
'volumeOffIcon' |
Thanks goes to these wonderful people (emoji key):
This project follows the all-contributors specification. Contributions of any kind are welcome!