fbredius/storybook

View on GitHub
lib/components/src/shared/animation.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { keyframes } from '@storybook/theming';

export const rotate360 = keyframes`
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
`;