aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2021-05-10 08:49:02 +0200
committerlonkaars <loek@pipeframe.xyz>2021-05-10 08:49:02 +0200
commitda96490d5e458def5a7511deab26fc5cfeb22af3 (patch)
tree11a542b63d8a58a21f112351dc4bfa4ab2a1ad7c /components
parent2604a4676abb5ab9d5c01aa2064648dbba0b6a06 (diff)
loop keyframe component
Diffstat (limited to 'components')
-rw-r--r--components/loop.tsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/components/loop.tsx b/components/loop.tsx
new file mode 100644
index 0000000..beaf019
--- /dev/null
+++ b/components/loop.tsx
@@ -0,0 +1,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' />
+ <SlideKeyframe type='loop' loopEnd />
+ </div>;
+}