You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
239 B

import { ICursorOption } from '../../interface/Cursor'
export const CURSOR_AGENT_HEIGHT = 12
export const defaultCursorOption: Readonly<Required<ICursorOption>> = {
width: 1,
color: '#000000',
dragWidth: 2,
dragColor: '#0000FF'
}