mirror of
https://github.com/hex248/ob248.com.git
synced 2026-02-07 18:23:04 +00:00
10 lines
284 B
TypeScript
10 lines
284 B
TypeScript
import React from 'react';
|
|
export interface FillHalfProps extends React.SVGProps<SVGSVGElement> {
|
|
size?: number | string;
|
|
className?: string;
|
|
}
|
|
export declare const FillHalf: {
|
|
({ size, className, ...props }: FillHalfProps): React.JSX.Element;
|
|
displayName: string;
|
|
};
|