31 lines
723 B
TypeScript
31 lines
723 B
TypeScript
|
|
import type { JSX, SVGProps } from 'react'
|
||
|
|
|
||
|
|
export const CarouselPreviousIcon = (
|
||
|
|
properties: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>,
|
||
|
|
) => {
|
||
|
|
return (
|
||
|
|
<svg
|
||
|
|
width={56}
|
||
|
|
height={57}
|
||
|
|
viewBox="0 0 56 57"
|
||
|
|
fill="none"
|
||
|
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
|
{...properties}
|
||
|
|
>
|
||
|
|
<path
|
||
|
|
d="M28 3.5c-13.807 0-25 11.193-25 25s11.193 25 25 25 25-11.193 25-25-11.193-25-25-25z"
|
||
|
|
stroke="currentColor"
|
||
|
|
strokeWidth={6}
|
||
|
|
strokeLinejoin="round"
|
||
|
|
/>
|
||
|
|
<path
|
||
|
|
d="M31.75 17.25L20.5 28.5l11.25 11.25"
|
||
|
|
stroke="currentColor"
|
||
|
|
strokeWidth={6}
|
||
|
|
strokeLinecap="round"
|
||
|
|
strokeLinejoin="round"
|
||
|
|
/>
|
||
|
|
</svg>
|
||
|
|
)
|
||
|
|
}
|