oak-general-business/es/components/config/style/index.d.ts

9 lines
262 B
TypeScript

import React from 'react';
import { Style as StyleType } from '../../../types/Style';
type StyleProps = {
value?: StyleType | null;
onChange: (value: StyleType) => void;
};
export default function Render(props: StyleProps): React.JSX.Element;
export {};