@pinuts/bsr-uikit-relaunch
Version:
BSR UI-KIT Relaunch
72 lines (67 loc) • 2.8 kB
JSX
import * as React from 'react';
import PropTypes from 'prop-types';
import { Icon160PropValues } from '../_defaultIconPropValues.ts';
const Uhr = (props) => {
const {
width = Icon160PropValues.width,
height = Icon160PropValues.height,
fill = Icon160PropValues.fill,
stroke = Icon160PropValues.stroke,
...restProps
} = props;
return (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
width={width}
height={height}
fill="none"
stroke={stroke}
{...restProps}
>
<path
d="M12 1.5C6.21 1.5 1.5 6.21 1.5 12C1.5 17.79 6.21 22.5 12 22.5C17.79 22.5 22.5 17.79 22.5 12C22.5 6.21 17.79 1.5 12 1.5ZM12 21.5C6.76 21.5 2.5 17.24 2.5 12C2.5 6.76 6.76 2.5 12 2.5C17.24 2.5 21.5 6.76 21.5 12C21.5 17.24 17.24 21.5 12 21.5Z"
fill={fill}
stroke={stroke}
strokeWidth="0.8"
/>
<path
d="M6.5 11.5H4.5C4.225 11.5 4 11.725 4 12C4 12.275 4.225 12.5 4.5 12.5H6.5C6.775 12.5 7 12.275 7 12C7 11.725 6.775 11.5 6.5 11.5Z"
fill={fill}
stroke={stroke}
strokeWidth="0.8"
/>
<path
d="M19.5 11.5H17.5C17.225 11.5 17 11.725 17 12C17 12.275 17.225 12.5 17.5 12.5H19.5C19.775 12.5 20 12.275 20 12C20 11.725 19.775 11.5 19.5 11.5Z"
fill={fill}
stroke={stroke}
strokeWidth="0.8"
/>
<path
d="M12 7C12.275 7 12.5 6.775 12.5 6.5V4.5C12.5 4.225 12.275 4 12 4C11.725 4 11.5 4.225 11.5 4.5V6.5C11.5 6.775 11.725 7 12 7Z"
fill={fill}
stroke={stroke}
strokeWidth="0.8"
/>
<path
d="M12 17C11.725 17 11.5 17.225 11.5 17.5V19.5C11.5 19.775 11.725 20 12 20C12.275 20 12.5 19.775 12.5 19.5V17.5C12.5 17.225 12.275 17 12 17Z"
fill={fill}
stroke={stroke}
strokeWidth="0.8"
/>
<path
d="M12 12.9997C12.13 12.9997 12.255 12.9497 12.355 12.8547L17.71 7.49969C17.905 7.30469 17.905 6.98969 17.71 6.79469C17.515 6.59969 17.2 6.59969 17.005 6.79469L12.005 11.7947L8.21001 7.99969C8.01501 7.80469 7.70001 7.80469 7.50501 7.99969C7.31001 8.19469 7.31001 8.50969 7.50501 8.70469L11.655 12.8547C11.755 12.9547 11.88 12.9997 12.01 12.9997H12Z"
fill={fill}
stroke={stroke}
strokeWidth="0.8"
/>
</svg>
);
};
Uhr.propTypes = {
width: PropTypes.string,
height: PropTypes.string,
fill: PropTypes.string,
stroke: PropTypes.string,
};
export default Uhr;