mirror of
https://github.com/wassname/talk.git
synced 2026-06-30 05:42:10 +08:00
22 lines
483 B
JavaScript
22 lines
483 B
JavaScript
import React from 'react';
|
|
import styles from './Success.css';
|
|
|
|
const Success = () => (
|
|
<div className={styles.container}>
|
|
<svg
|
|
className={styles.checkmark}
|
|
viewBox="0 0 52 52"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<circle className={styles.circle} cx="26" cy="26" r="25" fill="none" />
|
|
<path
|
|
className={styles.check}
|
|
fill="none"
|
|
d="M14.1 27.2l7.1 7.2 16.7-16.8"
|
|
/>
|
|
</svg>
|
|
</div>
|
|
);
|
|
|
|
export default Success;
|