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.
13 lines
321 B
13 lines
321 B
import { IRadioOption } from '../../interface/Radio'
|
|
import { VerticalAlign } from '../enum/VerticalAlign'
|
|
|
|
export const defaultRadioOption: Readonly<Required<IRadioOption>> = {
|
|
width: 14,
|
|
height: 14,
|
|
gap: 5,
|
|
lineWidth: 1,
|
|
fillStyle: '#5175f4',
|
|
strokeStyle: '#000000',
|
|
verticalAlign: VerticalAlign.BOTTOM
|
|
}
|