Files
omnivore/packages/web/components/tokens/cssKeyframes.ts
2022-02-11 09:24:33 -08:00

16 lines
391 B
TypeScript

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 },
})
}