@atlaskit/eslint-plugin-design-system
Version:
The essential plugin for use with the Atlassian Design System.
10 lines • 321 B
JavaScript
import typographyTokens from '@atlaskit/tokens/atlassian-typography';
export const fontWeightTokens = typographyTokens.filter(token => token.attributes.group === 'fontWeight').map(token => {
return {
tokenName: token.cleanName,
tokenValue: token.value,
values: {
fontWeight: token.value
}
};
});