@remotion/shapes
Version:
Generate SVG shapes
11 lines (10 loc) • 428 B
TypeScript
import React from 'react';
import type { MakeHeartProps } from '../utils/make-heart';
import type { AllShapesProps } from './render-svg';
export type HeartProps = MakeHeartProps & AllShapesProps;
/**
* @description Renders an SVG element containing a heart.
* @param {Number} size The size of the heart.
* @see [Documentation](https://www.remotion.dev/docs/shapes/heart)
*/
export declare const Heart: React.FC<HeartProps>;