From 2604a4676abb5ab9d5c01aa2064648dbba0b6a06 Mon Sep 17 00:00:00 2001 From: lonkaars Date: Sun, 9 May 2021 18:54:05 +0200 Subject: beginnings editor --- components/icons.tsx | 129 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 129 insertions(+) create mode 100644 components/icons.tsx (limited to 'components') diff --git a/components/icons.tsx b/components/icons.tsx new file mode 100644 index 0000000..95c1813 --- /dev/null +++ b/components/icons.tsx @@ -0,0 +1,129 @@ +import { keyframeTypes } from '../timeline'; + +export function PressureIcon() { + return + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ; +} + +export function SlideKeyframe(props: { + type: keyframeTypes; + loopEnd?: boolean; +}) { + return + {{ + 'default': , + 'delay': , + 'speedChange': , + 'loop': !props.loopEnd + ? + : , + }[props.type]} + ; +} -- cgit v1.2.3