Files
documentation/node_modules/@docusaurus/theme-classic/lib/theme/Icon/Success/index.js
2024-03-22 03:47:51 +05:30

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>
);
}