import React from 'react'; import FieldFunction from '../src/components/FieldFunction'; import {latest} from '@maplibre/maplibre-gl-style-spec' export default { title: 'FieldFunction', component: FieldFunction, }; export const Basic = () => { const value = { "property": "rank", "type": "categorical", "default": "#222", "stops": [ [ {"zoom": 6, "value": ""}, ["#777"] ], [ {"zoom": 10, "value": ""}, ["#444"] ] ] }; return
{}} value={value} errors={[]} fieldName={"Color"} fieldType={"color"} fieldSpec={latest['paint_fill']['fill-color']} />
};