Icons

These icons are used throughout the site.

Usage:

Import the icons macro.

Call the .get() function passing it the icon name.

(Optional) The second argument is any classes you would like to apply to the svg element.

Example:

{% import '@goizueta_theme/icons/icons.twig' as icons %}
{{ icons.get('facebook', 'icon icon--facebook') }}

This will render the svg inline with whatever class or classes are passed as the second argument.

<svg aria-hidden="true" role="img" class="icon icon--facebook">...</svg>

add

arrow-brown

arrow-circle

arrow-down-blue

arrow-down-white

arrow-left

arrow-left-blue background Layer 1

arrow-left-blue

arrow-next-blue-square

arrow-next-blue

arrow-next-navy

arrow-next-white

arrow-next

arrow-prev-blue

arrow-prev-navy

arrow-prev-white

arrow-prev

arrow-right

arrow-right-blue background Layer 1

arrow-right-blue

bars

bell

book-with-finger

briefcase

building-with-flag

building

calendar-clock

calendar

caret-down

caret-up

clock-square

clock

close-white

deposit

dots

download

edit

facebook

faculty

format

globe-2

globe-with-person

globe

gmat

group-of-people

hourglass-big

hourglass

info

instagram

key

linkedin-blue-bg

linkedin

location-pin

military

minus

no

person-hurdling

person-with-board

person-with-briefcase

pie-chart

piggy-bank-heart

pinterest

play

plus-one

plus

printer

profile-blue

search-blue

search

site-logo-white

site-logo

submit-white

submit

target-with-arrow

twitter

twitter-blue-bg

twitter

woman

yes

youtube

Markup Details
                            {% import "icons.twig" as icons %}
<div class="kss-icons">
{% for item in items %}
  <div class="kss-icons__item">
    {{ icons.get(item.icon, 'kss-icons__icon') }}
    <p class="kss-icons__name">{{ item.icon }}</p>
  </div>
{% endfor %}
</div>