chore(types): cleanup comments
This commit is contained in:
@@ -8,27 +8,27 @@ export enum BackgroundVariant {
|
||||
|
||||
export type BackgroundProps = {
|
||||
id?: string;
|
||||
/** color of the pattern */
|
||||
/** Color of the pattern */
|
||||
color?: string;
|
||||
/** color of the background */
|
||||
/** Color of the background */
|
||||
bgColor?: string;
|
||||
/** class applied to the container */
|
||||
/** Class applied to the container */
|
||||
className?: string;
|
||||
/** class applied to the pattern */
|
||||
/** Class applied to the pattern */
|
||||
patternClassName?: string;
|
||||
/** gap between repetitions of the pattern */
|
||||
/** Gap between repetitions of the pattern */
|
||||
gap?: number | [number, number];
|
||||
/** size of a single pattern element */
|
||||
/** Size of a single pattern element */
|
||||
size?: number;
|
||||
/** offset of the pattern */
|
||||
/** Offset of the pattern */
|
||||
offset?: number;
|
||||
/** line width of the Line pattern */
|
||||
/** Line width of the Line pattern */
|
||||
lineWidth?: number;
|
||||
/** variant of the pattern
|
||||
/** Variant of the pattern
|
||||
* @example BackgroundVariant.Lines, BackgroundVariant.Dots, BackgroundVariant.Cross
|
||||
* 'lines', 'dots', 'cross'
|
||||
*/
|
||||
variant?: BackgroundVariant;
|
||||
/** style applied to the container */
|
||||
/** Style applied to the container */
|
||||
style?: CSSProperties;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user