Collection of Option Utilities for acnb.
npm i @acnb/options
import { useBackgroundOptions } from '@acnb/options'
const backgroundOptions = useBackgroundOptions()
console.log(backgroundOptions)
// {
// enable: false,
// value: "",
// opacity: 0.85,
// repeat: false,
// }
const backgroundOptions = useBackgroundOptions({
enable: true,
})
console.log(backgroundOptions)
// {
// enable: true,
// value: "",
// opacity: 0.85,
// repeat: false,
// }