There are a few ways to start using Animus depending on your need:
import { animus } from '@animus-ui/core';const Box = animus.groups({layout: true,border: true,space: true,}).asElement('div');
import { config } from '@animus-ui/core';const animus = config.addGroup('custom', {widows: {property: 'widows',},}).build();
import { createAnimus } from '@animus-ui/core';const animus = createAnimus().addGroup('layout', {width: { property: 'width' },height: { property: 'height' },display: { property: 'display' },}).build();