diff options
Diffstat (limited to 'components/loop.tsx')
-rw-r--r-- | components/loop.tsx | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/components/loop.tsx b/components/loop.tsx deleted file mode 100644 index f459ab5..0000000 --- a/components/loop.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import { CSSProperties } from 'react'; -import { SlideKeyframe } from './icons'; - -export default function Loop(props: { - length: number; -}) { - return <div style={{ '--loop-length': props.length } as CSSProperties} className='loop'> - <SlideKeyframe type='loop' /> - <div className='connector dispinbl' /> - <SlideKeyframe type='loop' loopEnd /> - </div>; -} |