• Index
  • Core
    • button
    • link
    • base-header
    • base-section
    • img
    • icon
    • swiper-arrows
    • splide-arrows
    • cta-button
    • tooltip
    • badge
    • pagination-arrow
    • pagination
    • splide-arrows
    • footer-social
    • footer-column
    • footer
    • share
    • share-button
    • overview-button
    • energy-label
    • breadcrumbs
    • side-menu
    • modal
    • review-feedback
    • feedback
    • seo-box
  • Sections
    • category-cards-section
    • real-estate-section
    • dev-project-slide-section
    • re-agency-description-section
    • re-agency-detail-branches-section
    • list-business-card
    • usp-section
    • link-navigation-section
    • posts-slide-section
    • dev-project-slide-section
    • filter-table-section
    • highlited-broker-section
    • broker-detail-section
    • real-estate-agency-header-section
    • real-estate-agency-content-section
    • base-section-side-menu
    • estates-slide-section
    • re-agency-form-section
    • map-section
    • broker-review-slide-section
    • estate-detail-content-section
    • category-nav-section
    • usp-base-section
    • post-detail-section
    • re-agents-section
    • posts-section
    • estates-content-section
    • estate-info-section
    • estate-detail-intro-section
    • error-section
    • bug-report-modal
    • flash-message-modal
    • fade-in-section
    • locality-content-section
  • Items
    • category-card-item
    • statistical-item
    • usp-item
    • overview-item
    • dev-project-slide-item
    • count-item
    • star-item
    • rating-item
    • broker-meta-item
    • highlighted-broker-item
    • post-slide-item
    • more-posts-item
    • broker-chart-item
    • contact-item
    • pagination-item
    • estate-slide-item
    • branch-item
    • broker-review-item
    • review-chart-item
    • broker-review-response-item
    • social-link-item
    • re-agents-item
    • estate-item
    • info-item
    • estate-detail-intro-item
  • Forms
    • input-field
    • search-field
    • radio
    • radio-fieldset
    • checkbox
    • checkbox-fieldset
    • switch
    • dropdown
    • textarea
    • option-switch
    • range
  • Subsections
    • current-info-subsection

Links

Default

  • Preview
  • Twig
  • Html
  • Read more
  •         {% include "@Components/link/link.twig" with {
      props : {
        title: "Read more",
        href: "https://www.google.com/"
      }
    } %}
    
          
  •           <a class="link --black" href="https://www.google.com/">
          <span class="link__title">
          <span class="link__title-wrap">Read more</span>
        </span>
        </a>
    
            

With icon

  • Preview
  • Twig
  • Html
  • Read more
  •         {% include "@Components/link/link.twig" with {props: {
        title: "Read more",
        href: "https://www.google.com/",
        animation: "right",
        icon: {
          src: "images/svg/chevron-right.svg",
          size: "xs"
        }
      }
    } %}
    
          
  •           <a class="link --black  --animation-right" href="https://www.google.com/">
          <span class="link__title">
          <span class="link__title-wrap">Read more</span>
        </span>
            <span class="link__icon ">
          <span class="icon  --xs">
          <img src="images/svg/chevron-right.svg"  loading="lazy">
      
      </span>
              </span>
      </a>
    
            

Icon left

  • Preview
  • Twig
  • Html
  • Read more
  •         {% include "@Components/link/link.twig" with {
      props : {
        title: "Read more",
        href: "https://www.google.com/",
        animation: "zoom",
        iconBefore: true,
        icon: {
          src: "images/svg/clock.svg",
          size: "sm"
        }
      }
    } %}
    
          
  •           <a class="link --black --icon-before --animation-zoom" href="https://www.google.com/">
          <span class="link__title">
          <span class="link__title-wrap">Read more</span>
        </span>
            <span class="link__icon ">
          <span class="icon  --sm">
          <img src="images/svg/clock.svg"  loading="lazy">
      
      </span>
              </span>
      </a>
    
            

Primary color

  • Preview
  • Twig
  • Html
  • Read more
  •         {% include "@Components/link/link.twig" with {
      props : {
        title: "Read more",
        href: "https://www.google.com/",
        color: "primary",
      }
    } %}
    
          
  •           <a class="link --primary" href="https://www.google.com/">
          <span class="link__title">
          <span class="link__title-wrap">Read more</span>
        </span>
        </a>
    
            

Conversion color

  • Preview
  • Twig
  • Html
  • Read more
  •         {% include "@Components/link/link.twig" with {
      props : {
        title: "Read more",
        href: "https://www.google.com/",
        color: "conversion",
      }
    } %}
    
          
  •           <a class="link --conversion" href="https://www.google.com/">
          <span class="link__title">
          <span class="link__title-wrap">Read more</span>
        </span>
        </a>
    
            

Light gray color

  • Preview
  • Twig
  • Html
  • Read more
  •         {% include "@Components/link/link.twig" with {
      props : {
        title: "Read more",
        href: "https://www.google.com/",
        color: "light-gray",
      }
    } %}
    
          
  •           <a class="link --light-gray" href="https://www.google.com/">
          <span class="link__title">
          <span class="link__title-wrap">Read more</span>
        </span>
        </a>
    
            

Gray color

  • Preview
  • Twig
  • Html
  • Read more
  •         {% include "@Components/link/link.twig" with {
      props : {
        title: "Read more",
        href: "https://www.google.com/",
        color: "gray"
      }
    } %}
    
          
  •           <a class="link --gray" href="https://www.google.com/">
          <span class="link__title">
          <span class="link__title-wrap">Read more</span>
        </span>
        </a>
    
            

Warning color

  • Preview
  • Twig
  • Html
  • Read more
  •         {% include "@Components/link/link.twig" with {
      props : {
        title: "Read more",
        href: "https://www.google.com/",
        color: "warning"
      }
    } %}
    
          
  •           <a class="link --warning" href="https://www.google.com/">
          <span class="link__title">
          <span class="link__title-wrap">Read more</span>
        </span>
        </a>
    
            

Schema

    {
  "props": {
    "title": {
      "type": "string",
      "description": "Title of the component"
    },
    "color": {
      "type": "string",
      "description": "primary (default) | black | light-gray"
    },
    "extraClass": {
      "type": "string",
      "description": "extra class of button"
    },
    "url": {
      "type": "string",
      "description": "Url address (default # if tag is a)"
    },
    "animation": {
      "type": "string",
      "description": "right | zoom"
    },
    "iconBefore": {
      "type": "boolean",
      "description": "Set if icon will be before text"
    },
    "iconOnly": {
      "type": "boolean",
      "description": "Make button icon only."
    },
    "icon": {
      "type": "object",
      "props": {
        "src": "string",
        "description": "path to icon"
      }
    }
  }
}