mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
15 lines
532 B
TypeScript
15 lines
532 B
TypeScript
import { type IconProps, Icon } from './Icon'
|
|
|
|
/**
|
|
* Pending icon - Pending / awaiting action
|
|
*/
|
|
export function Pending(props: IconProps) {
|
|
return (
|
|
<Icon {...props}>
|
|
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" />
|
|
</Icon>
|
|
)
|
|
}
|
|
|
|
export default Pending
|