import { Table } from '../../index.style'; import { Palette } from '../Palette'; import * as React from 'react'; import getColour from '@lendi-ui/commons/colours'; import { scales as interactionScales } from '../../../tokens/types/semantic/interaction'; import { scales as textScales } from '../../../tokens/types/semantic/text'; import { scales as backgroundScales } from '../../../tokens/types/semantic/background'; import { scales as fillScales } from '../../../tokens/types/semantic/fill'; import { states as borderStates } from '../../../tokens/types/semantic/border'; export const SemanticTable = () => ( {interactionScales.map((scale) => { return ( ); })} {textScales.map((scale, index) => { return ( ); })} {backgroundScales.map((scale, index) => { return ( ); })} {fillScales.map((scale, index) => { return ( ); })} {borderStates.map((state, index) => ( ))}
Category Scale Value Usages
Interaction
{scale}

TODO

Text
{scale}

TODO

Background
{scale}

TODO

Fill
{scale}

TODO

Border
container

TODO

divider

TODO

dividerEmphasis

TODO

interaction (state: default)

TODO

interaction (state: {state})

TODO

);