// deck.gl-community // SPDX-License-Identifier: MIT // Copyright (c) vis.gl contributors /** Supported marker types */ export type Marker = | 'bell-filled' | 'bell' | 'bookmark-filled' | 'bookmark' | 'cd-filled' | 'cd' | 'checkmark' | 'circle-check-filled' | 'circle-check' | 'circle-filled' | 'circle-i-filled' | 'circle-i' | 'circle-minus-filled' | 'circle-minus' | 'circle-plus-filled' | 'circle-plus' | 'circle-questionmark-filled' | 'circle-questionmark' | 'circle-slash-filled' | 'circle-slash' | 'circle-x-filled' | 'circle-x' | 'circle' | 'diamond-filled' | 'diamond' | 'flag-filled' | 'flag' | 'gear' | 'heart-filled' | 'heart' | 'location-marker-filled' | 'location-marker' | 'octagonal-star-filled' | 'octagonal-star' | 'person-filled' | 'person' | 'pin-filled' | 'pin' | 'plus-small' | 'plus' | 'rectangle-filled' | 'rectangle' | 'star-filled' | 'star' | 'tag-filled' | 'tag' | 'thumb-down-filled' | 'thumb-down' | 'thumb-up' | 'thumb_up-filled' | 'triangle-down-filled' | 'triangle-down' | 'triangle-left-filled' | 'triangle-left' | 'triangle-right-filled' | 'triangle-right' | 'triangle-up-filled' | 'triangle-up' | 'x-small' | 'x';