import React from 'react'; import { defaultProps, SpinnerProps } from './helpers'; import { SpinnersProps, withSharedProps } from './withSharedProps'; import './SpinnerRoundOutlined.css'; const animations = [ { r: 2, }, { name: 'spinners-react-round-outlined', r: 14, }, { name: 'spinners-react-round-outlined', r: 28, }, ]; export type SpinnerRoundOutlinedProps = SpinnersProps & SpinnerProps; function Component({ speed = defaultProps.speed, still = defaultProps.still, thickness = defaultProps.thickness, ...svgProps }: SpinnerProps) { const strokeWidth = 3 * (thickness / 100); return ( {animations.map((animation, i) => ( ))} ); } export const SpinnerRoundOutlined = withSharedProps(Component);