mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-11 18:45:41 +00:00
12 lines
615 B
TypeScript
12 lines
615 B
TypeScript
import {Props} from '@/types'
|
|
|
|
export function ShareIcon(props: Props) {
|
|
return (
|
|
<svg fill="none" stroke="currentColor" strokeWidth={1.5} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"
|
|
aria-hidden="true" {...props}>
|
|
<path strokeLinecap="round" strokeLinejoin="round"
|
|
d="M7.217 10.907a2.25 2.25 0 100 2.186m0-2.186c.18.324.283.696.283 1.093s-.103.77-.283 1.093m0-2.186l9.566-5.314m-9.566 7.5l9.566 5.314m0 0a2.25 2.25 0 103.935 2.186 2.25 2.25 0 00-3.935-2.186zm0-12.814a2.25 2.25 0 103.933-2.185 2.25 2.25 0 00-3.933 2.185z"/>
|
|
</svg>
|
|
);
|
|
}
|