WordPress Version: 6.3
/**
* Returns the CSS filter property url to reference the rendered SVG.
*
* @since 5.9.0
* @since 6.1.0 Allow unset for preset colors.
* @deprecated 6.3.0
*
* @access private
*
* @param array $preset Duotone preset value as seen in theme.json.
* @return string Duotone CSS filter property url value.
*/
function wp_get_duotone_filter_property($preset)
{
_deprecated_function(__FUNCTION__, '6.3.0');
return WP_Duotone::get_filter_css_property_value_from_preset($preset);
}