omnivore/packages/web/components/tokens/cssKeyframes.ts

16 lines
391 B
TypeScript
Raw Normal View History

2022-02-11 17:24:33 +00:00
import { keyframes } from './stitches.config'
export function expandWidthAnim(startWidth: string, endWidth: string): unknown {
return keyframes({
from: { width: startWidth },
to: { width: endWidth }
})
}
export function slideUpAnim(startBottom: string, endBottom: string): unknown {
return keyframes({
from: { bottom: startBottom },
to: { bottom: endBottom },
})
}