diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-05-24 11:26:11 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-05-24 11:26:11 +0200 |
commit | 5e07224b4bf5010b96f745441b6ee4c213d3fb81 (patch) | |
tree | 812132ad39d4a56ae9a1529ceb9c9ff69efe1109 /components | |
parent | 221efd26e676ca86aa6f9058d7f7d082e1b87e94 (diff) |
dragging keyframe affects timeline :tada:
Diffstat (limited to 'components')
-rw-r--r-- | components/icons.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/components/icons.tsx b/components/icons.tsx index 50bf8f0..f8d6668 100644 --- a/components/icons.tsx +++ b/components/icons.tsx @@ -1,5 +1,4 @@ -import { Ref } from 'react'; -import { keyframeTypes } from '../timeline'; +import { slideTypes } from '../timeline'; export function PressureIcon() { return <svg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'> @@ -117,7 +116,7 @@ export function PressureIcon() { } export function SlideKeyframe(props: { - type: keyframeTypes; + type: slideTypes; loopEnd?: boolean; }) { return <svg |