12 lines
191 B
TypeScript
12 lines
191 B
TypeScript
import {css} from '@emotion/react';
|
|
|
|
export const pointerCursor = css`
|
|
cursor: pointer;
|
|
`;
|
|
|
|
export const center = css`
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
`;
|