| 12345678910111213141516171819202122232425262728293031 |
- import CodeShape from './index'
- import { uniqueId } from 'utils'
- import { DotShape, ShapeProps, ShapeType } from 'types'
- import { defaultStyle } from 'state/shape-styles'
-
- /* ----------------- Start Copy Here ---------------- */
-
- export default class Dot extends CodeShape<DotShape> {
- constructor(props = {} as ShapeProps<DotShape>) {
- super({
- id: uniqueId(),
-
- parentId: (window as any).currentPageId,
- type: ShapeType.Dot,
- isGenerated: true,
- name: 'Dot',
- childIndex: 0,
- point: [0, 0],
- rotation: 0,
- isAspectRatioLocked: false,
- isLocked: false,
- isHidden: false,
- ...props,
- style: {
- ...defaultStyle,
- ...props.style,
- isFilled: true,
- },
- })
- }
- }
|