openreplay/frontend/app/components/ui/Icons/cypress.tsx
Delirium ee46413b13
Events for E2E testing (#3081)
* ui: change export event ui, add rightblock panel

* ui: add timeline select checkbox

* ui: keep selected framework in localstorage

* ui: on timeline => on the timeline
2025-03-03 16:36:42 +01:00

19 lines
1.6 KiB
TypeScript

/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Cypress(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg viewBox="0 0 16 16" fill="none" width={ `${ width }px` } height={ `${ height }px` } ><g><path d="M8 1.075c-.5 0-.973.064-1.24.112v.001a6.896 6.896 0 0 0-5.696 6.813c0 .651.09 1.29.269 1.91.022.083.052.172.08.258a6.966 6.966 0 0 0 6.584 4.756c.037 0 .146 0 .29-.007a1.283 1.283 0 0 0 1.128-.792l.274-.667 3.182-7.746h-1.044l-1.339 3.393L9.14 5.713H8.036l1.892 4.63L8.52 13.76a.312.312 0 0 1-.273.194c-.083.003-.165.006-.25.006A5.992 5.992 0 0 1 2.26 9.645a5.954 5.954 0 0 1-.23-1.644 5.936 5.936 0 0 1 4.973-5.875c.128-.021.513-.084.997-.084 2.553 0 4.78 1.58 5.624 3.959.032.083.056.169.085.254.172.563.261 1.15.261 1.746a5.925 5.925 0 0 1-4.228 5.7l.28.925a6.889 6.889 0 0 0 4.915-6.624c0-.895-.172-1.66-.376-2.25l-.075-.21h-.002A6.894 6.894 0 0 0 8 1.075Zm-2.06 4.55c-.695 0-1.258.222-1.723.68C3.753 6.757 3.52 7.33 3.52 8c0 .667.235 1.235.696 1.688.466.457 1.029.679 1.723.679.986 0 1.824-.552 2.19-1.44l.018-.047-.941-.32c-.098.264-.437.86-1.267.86-.39 0-.719-.135-.979-.404A1.406 1.406 0 0 1 4.563 8c0-.404.13-.74.397-1.025.261-.268.59-.405.98-.405.83 0 1.168.625 1.267.86l.94-.32-.019-.048c-.364-.888-1.203-1.439-2.189-1.439Z" fill="#000" stroke="#000" strokeWidth=".289"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z"/></clipPath></defs></svg>
);
}
export default Cypress;