# ImportFromContent.content
Import content from a string.

{/* Do not edit this file. It is automatically generated by API Documenter. */}

## ImportFromContent.content property

Import content from a string.

**Signature:**

```typescript
content: string;
```

## Remarks

- For `LOTTIE`, provide the full Lottie JSON string - For `SVG`, provide the full SVG markup string

## Example

```ts
// Lottie JSON
{ type: "LOTTIE_JSON", content: '{"v":"5.5.7","fr":60}...' }

// SVG
{ type: "SVG", content: '<svg width="100" height="100">...</svg>' }
```
