blob: ec45c0817dd15091f7d986fe7075b22ddeeba015 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import { SlideKeyframe } from './icons';
export default function Loop(props: {
width: number;
}) {
return <div style={{ width: props.width }} className='loop'>
<SlideKeyframe type='loop' />
<div className='connector dispinbl' />
<SlideKeyframe type='loop' loopEnd />
</div>;
}
|