mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-12-08 04:53:52 +01:00
18 lines
448 B
JavaScript
18 lines
448 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
import React from 'react';
|
|
export default function IconSuccess(props) {
|
|
return (
|
|
<svg viewBox="0 0 24 24" {...props}>
|
|
<path
|
|
fill="currentColor"
|
|
d="M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|