wakuconnect-chat-sdk/packages/icons/src/chevron-left-icon.tsx

25 lines
498 B
TypeScript

import { createIcon } from '../lib/create-icon'
const SvgChevronLeftIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
stroke={props.color}
strokeWidth={1.2}
d="M12.25 14.5 7.75 10l4.5-4.5"
/>
</svg>
)
})
export default SvgChevronLeftIcon