import { View, ViewProps } from "../../atoms"; type AnchorViewProps = ViewProps; /** * This is an a tag with View Standard implementation * * @example * const Comp = () => ( * * * * ); * * @deprecated: use View instead */ const AnchorView = (props: AnchorViewProps) => { return ; }; export { AnchorView }; export type { AnchorViewProps };