UNPKG
@nurl/panda-preset
Version:
latest (0.10.0)
0.10.0
0.9.0
0.8.4
0.7.4
0.6.4
0.5.4
0.5.3
0.4.3
0.3.3
0.2.3
0.1.2
0.1.1
0.1.0
Official Panda-CSS preset for the Ganglion Design System.
nurl.website
nurl-inc/dev-tools
@nurl/panda-preset
/
src
/
theme
/
keyframes.ts
13 lines
(10 loc)
•
262 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
type
{
CssKeyframes
}
from
'@pandacss/types'
export
function
defineKeyframes<T
extends
CssKeyframes
>(
config
: T) {
return
config }
export
const
keyframes =
defineKeyframes
({
fadeIn
: {
'0%'
: {
opacity
:
'0'
},
'100%'
: {
opacity
:
'1'
}, }, })