Skip to content

Instantly share code, notes, and snippets.

@tidusia
Last active November 13, 2020 10:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tidusia/6ad93cb642dc0da8ebddb057492efdd8 to your computer and use it in GitHub Desktop.
Save tidusia/6ad93cb642dc0da8ebddb057492efdd8 to your computer and use it in GitHub Desktop.
import React, { FunctionComponent } from "react";
type Props = React.SVGProps<any> & {
className: string;
title?: string;
};
const Download: FunctionComponent<Props> = ({
className,
title,
...otherProps
}) => (
<svg
className={className}
viewBox="0 0 18 20"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
{...otherProps}
>
{!!title && <title>{title}</title>}
<g stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
<g transform="translate(-1391.000000, -548.000000)" fill="currentColor">
<g transform="translate(240.000000, 530.000000)">
<g transform="translate(1151.000000, 18.000000)">
<polygon points="0 18 18 18 18 20 0 20" />
<polygon points="10 8 17 8 9 16 1 8 8 8 8 0 10 0" />
</g>
</g>
</g>
</g>
</svg>
);
export default Download;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment