cookie12-test-ui
Version:
React component library
16 lines (15 loc) • 517 B
TypeScript
import React from 'react';
import './Paragraph.scss';
interface PProps {
color?: 'text-01' | 'text-02' | 'ads-color-disabled' | 'placeholder' | 'savings' | 'link' | 'inverse';
detail?: boolean;
detailColor?: 'ads-color-inverse';
disabled?: boolean;
hidden?: boolean;
short?: boolean;
small?: boolean;
shortSmall?: boolean;
type?: 'ads-paragraph--short' | 'ads-paragraph__small' | 'ads-paragraph--short__small';
}
export declare const P: React.FC<PProps>;
export {};