From bfa407dc084ba471d989be27639b7cf15767e7b7 Mon Sep 17 00:00:00 2001 From: Kakabay Date: Tue, 21 Feb 2023 18:50:46 +0500 Subject: [PATCH] suka --- src/animations/pagination.animation.ts | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/animations/pagination.animation.ts diff --git a/src/animations/pagination.animation.ts b/src/animations/pagination.animation.ts new file mode 100644 index 0000000..fd27806 --- /dev/null +++ b/src/animations/pagination.animation.ts @@ -0,0 +1,19 @@ +import { Variants } from 'framer-motion'; + +export const paginationMotion: Variants = { + rest: { + border: 'rgba(56,163,157, 0) 0.1rem solid', + color: '#272727', + background: '#fff', + // fontWeight: 'normal', + type: 'spring', + }, + active: { + border: 'rgba(56,163,157, 1) 0.1rem solid', + color: '#ffffff', + background: '#38a39d', + + // fontWeight: 'bold', + type: 'spring', + }, +};