Skip to content

Commit

Permalink
feat:add interface demos
Browse files Browse the repository at this point in the history
  • Loading branch information
pomelo-nwu committed Jan 27, 2021
1 parent 1f10e78 commit 0d0fe66
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions packages/graphin/docs/interface/style.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/* eslint-disable @typescript-eslint/no-unused-vars */
import { NodeStyle } from '@antv/graphin';
import {
NodeStyleKeyShape,
NodeStyleHalo,
NodeStyleBadge,
NodeStyleIcon,
NodeStyleLabel,
} from '../../src/typings/type';

/** Node Style Interface */

export const keyshape = (props: NodeStyleKeyShape) => {};

export const label = (props: NodeStyleLabel) => {};

export const icon = (props: NodeStyleIcon) => {};

export const badges = (props: NodeStyleBadge) => {};

export const halo = (props: NodeStyleHalo) => {};

0 comments on commit 0d0fe66

Please sign in to comment.