UNPKG

sebikostudio-icons

Version:
14 lines (9 loc) 742 B
import React, { forwardRef } from 'react'; export const AlignRightIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "align right, align, right"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M18.5 1.5L18.5 18.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <rect width="3" height="13" rx="1.5" transform="matrix(4.37114e-08 1 1 -4.37114e-08 3 6)" fill="currentColor"/> <rect width="3" height="8" rx="1.5" transform="matrix(4.37114e-08 1 1 -4.37114e-08 8 11)" fill="currentColor"/> </svg> )); export default AlignRightIcon;