wix-style-react
Version:
wix-style-react
15 lines (12 loc) • 432 B
TypeScript
import * as React from 'react';
export interface SubheaderProps {
title: React.ReactNode;
suffix?: React.ReactNode;
dataHook?: string;
skin?: SubheaderSkin;
}
export type SubheaderSkin = 'standard' | 'neutral';
/**
* @deprecated Card.Subheader is deprecated and will be removed in the next major version. Please use SectionHeader instead.
*/
export default class Subheader extends React.PureComponent<SubheaderProps> {}