Skip to content

Commit

Permalink
feat(vector): Send SVG 컴포넌트를 추가한다
Browse files Browse the repository at this point in the history
  • Loading branch information
leegwae committed Aug 23, 2023
1 parent f47f51d commit 6c413a2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/components/vectors/Send.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import type { SVGProps } from 'react';

import React from 'react';

export const Send = (props: SVGProps<SVGSVGElement>): JSX.Element => (
<svg
xmlns="http://www.w3.org/2000/svg"
height="48"
viewBox="0 -960 960 960"
width="48"
{...props}
>
<path d="M120-160v-640l760 320-760 320Zm60-93 544-227-544-230v168l242 62-242 60v167Zm0 0v-457 457Z" />
</svg>
);
1 change: 1 addition & 0 deletions src/components/vectors/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ export { Account } from './Account';
export { Add } from './Add';
export { Menu } from './Menu';
export { Clipboard } from './Clipboard';
export { Send } from './Send';

0 comments on commit 6c413a2

Please sign in to comment.