material.font.features
Version:
Material UI component for displaying opentype font features.
17 lines (16 loc) • 418 B
TypeScript
import React from 'react';
declare type Props = {
description: string;
character: string;
tag: string;
options: string[];
value: number;
fontFamily: string;
onChange: (value: number) => void;
};
export default class AlternateStylePicker extends React.PureComponent<Props> {
static defaultProps: {};
constructor(props: Props);
render(): JSX.Element;
}
export {};