Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import * as React from "react"; import { SvgProps } from "./"; export const SertoVerificationError: React.FunctionComponent<SvgProps> = (props) => { return ( <svg width="55" height="55" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M38.4295 0.650535C39.4351 0.234004 40.5649 0.234005 41.5705 0.650536L66.7137 11.0652C67.7193 11.4817 68.5183 12.2807 68.9348 13.2863L79.3495 38.4295C79.766 39.4351 79.766 40.5649 79.3495 41.5705L68.9348 66.7137C68.5183 67.7193 67.7193 68.5183 66.7137 68.9348L41.5705 79.3495C40.5649 79.766 39.4351 79.766 38.4295 79.3495L13.2863 68.9348C12.2807 68.5183 11.4817 67.7193 11.0652 66.7137L0.650535 41.5705C0.234004 40.5649 0.234005 39.4351 0.650536 38.4295L11.0652 13.2863C11.4817 12.2807 12.2807 11.4817 13.2863 11.0652L38.4295 0.650535Z" fill={props.color || "#E9403A"} /> <path d="M53.2929 29.5371C53.6834 29.1466 53.6834 28.5134 53.2929 28.1229L51.8771 26.7071C51.4866 26.3166 50.8534 26.3166 50.4629 26.7071L40.7071 36.4629C40.3166 36.8534 39.6834 36.8534 39.2929 36.4629L29.5371 26.7071C29.1466 26.3166 28.5134 26.3166 28.1229 26.7071L26.7071 28.1229C26.3166 28.5134 26.3166 29.1466 26.7071 29.5371L36.4629 39.2929C36.8534 39.6834 36.8534 40.3166 36.4629 40.7071L26.7071 50.4629C26.3166 50.8534 26.3166 51.4866 26.7071 51.8771L28.1229 53.2929C28.5134 53.6834 29.1466 53.6834 29.5371 53.2929L39.2929 43.5371C39.6834 43.1466 40.3166 43.1466 40.7071 43.5371L50.4629 53.2929C50.8534 53.6834 51.4866 53.6834 51.8771 53.2929L53.2929 51.8771C53.6834 51.4866 53.6834 50.8534 53.2929 50.4629L43.5371 40.7071C43.1466 40.3166 43.1466 39.6834 43.5371 39.2929L53.2929 29.5371Z" fill="white" /> </svg> ); }; |